Pause?

is there a line of code to pause or stop the timeline for an amount of time? :h:

stop();

…? :slight_smile:

If you want to stop eg in frame 30 for 3 seconds, put this code in frame 30:

stop();
delay = setInterval(playTimeline, 3000);
function playTimeline(){
clearInterval(delay);
_root.gotoAndPlay(31);
}

??

scotty(-:

sweet thanks scotty;)

you’re welcome=)