Flash wait time until,,,
Flash wait time until,,,
Out of context: Reply #4
- Started
- Last post
- 11 Responses
- autonoma0
Don't use an onEnterFrame. Put this on the frame you want to pause:
stop();
function wait() {
play();
clearInterval(waiting);
}
var waiting = setInterval(wait,5000);Just change the "5000" to however many milliseconds you want it to pause. 5000 is 5 seconds.