Play backwards while holding button
Hi folks
I have a simple but disheartingly frustrating task that I would like to achieve. But since I am a bloody noob, grrrr....
Ok have a look here:
http://www.binarylooks.com/projects/...lery/index.php
The top panel with the thumbs is what concerns me.I want the left button to scroll it back and the right button to scroll it forward. The thumbs panel is a simple movie with two keyframes to make it move.
The right arrow says something simple like:
Code:
on(press) {
play();
}
on(release) {
stop();
}
For the back button, it is more problematic.
I tried:
Code:
on(press) {
for (i=panel._currentframe; i>0; i--) {
gotoAndStop(i);
}
As you see, it does not work smoothly.
I tried googling it, and it seems thaht this is a common frustration. Sadly, I did not find an easy answer.
Somebody has solved this particularly problem?
Thanks
Question resolved. Thanks
Thanks a lot BLiZZARD It worked perfectly fine.
Here's the final movie.