Flash question
Flash question
Out of context: Reply #6
- Started
- Last post
- 13 Responses
- comicGeek0
Use this function:
function myrewind(){
this.onEnterFrame = function(){
_root.redclip.gotoAndStop(_root...}
}Then at the frame where you want to stop:
mystopframe = 2;
if(_root.redclip._currentFrame-1 == 2){
_root.redclip.gotoAndStop(mystop...
this.onEnterFrame = undefined;
}