Add a keyframe to the position in your movie where you’d like the timeline to pause. Any layer will do, but if you like to be organized, create a dedicated scripts layer. Click into this keyframe and paste the following ActionScript.
stop();
var interval:Number = setInterval(
function():Void {
play();
clearInterval(interval);
},
2000
);
Popularity: 100% [?]
Leave a Reply