Pause Timer from Dave Stiller AS2

An answer, short and sweet

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% [?]

line
Graphicmuse Design copyright 2009