I have a MC that you scroll using buttons. It scrolls left, right and when the end of the MC enters the frame it duplicates so it appears to continue scrolling. The problem is it only duplicate one time the it will disappear out of frame if you continue to scroll.
I want it to keep duplicating and scrolling.
This is the actions I have for my buttons:
// left
on (rollOver) {
_root.pic2.left = true;
}
on (rollOut) {
_root.pic2.left = false;
}
// right
on (rollOver) {
_root.pic2.right = true;
}
on (rollOut) {
_root.pic2.right = false;
}
This has been put together from deconstruted FLA. files and help from the great people on this site. So sayin add this or try if, else dose'nt help, I might need more explanation than most or show me where to add it in the code.
I am attaching a sample to better explain what I am trying to do.