Hey Folks,
in a movie clip I have three stops with frame labels.
I can get it to pause using
var timer:Timer = new Timer(2000, 1);
timer.addEventListener(
TimerEvent.TIMER,
function(evt:TimerEvent):void {
gotoAndStop(“stop2”);
}
);
timer.start();
How would I then get it to pause at “stop2” for a period of time before moving to “stop3” and then lastly pausing at three and going back to two.
THANKS