I have some keyframes that open a subnavigation, and it would be cool if I could close it by just playing it backwards..... how do you tell the playhead to go backwards like 50 frames?
Printable View
I have some keyframes that open a subnavigation, and it would be cool if I could close it by just playing it backwards..... how do you tell the playhead to go backwards like 50 frames?
create a blank MC with the following actions:
frame 1:
_root.MCinstancename.prevFrame();
frame 2:
gotoAndPlay(1);
make sure that "_root.MCinstancename" matches the level and instance name of your movie clip.
:( it didn't work. it only stopped the movie..