Question
setTimeout not working in Animate
I have the following code at a certain frame in a move clip. I want the action to pause for 1 minute before move to "Ob2" frame. What am I doing wrong?
this.stop();
setTimeout(myFunction,60000);
function myFunction() {
this.gotoAndPlay("Obj2");
}
