/ Published in: ActionScript
On a new layer, add the following Actionscript to the frame requiring to be paused.
1000 represents the delay in milliseconds, being 1 second.
1000 represents the delay in milliseconds, being 1 second.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
stop(); var interval:Number = setInterval( function():Void { play(); clearInterval(interval); }, 10000 );