wait for 1 second
stop();
var nDelayID:Number = setInterval(this, "pause", 4000);
// where 4000 is 4000 milliseconds
function pause():Void {
clearInterval(nDelayID);
play();
// or nextFrame();
}
pause on frame:
stop();
email:
goto another page:
goto another frame:
on (release) {
gotoAndPlay(15);
}
|