Flash Timer
Flash Timer
Out of context: Reply #11
- Started
- Last post
- 16 Responses
- ********0
On frame 1 of your movie put this code:
function stopIt(){
stop();
waitInterval = setInterval(function(){ play(); clearInterval(waitInterval);}, 15000);
}then whey you want to stop for 15 seconds call the stopIt function:
stopIt();
So for example write stopIt(); on frame 10 of the movie and it will stop for 15 seconds.