Hi everyone,


This is what I'm trying to do. I have a movie clip that is long horizontally. I have 2 buttons (left & right) that I want to use to scroll the movie clip with the mouse press and release events.

I have the following code so far:

on (press) {
do {
pics.nextFrame();
} while (pics._currentFrame <> 40);
}

on (release, releaseOutside) {
pics.stop();
}


now, this is not working properly because I'm guessing it does the loop too fast. I tried placing a for loop in the do while to kinda force a pause, but that didn't work.


Anyone have any ideas??

Thanks,
Tony