/ 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.
Expand |
Embed | Plain Text
stop(); var interval:Number = setInterval( function():Void { play(); clearInterval(interval); }, 10000 );
You need to login to post a comment.
