PDA

View Full Version : pause?



SlowRoasted
September 29th, 2004, 11:46 PM
is there a line of code to pause or stop the timeline for an amount of time? :h:

amanuo
September 30th, 2004, 04:30 AM
stop();


.......? :)

scotty
September 30th, 2004, 05:16 AM
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(-:

SlowRoasted
September 30th, 2004, 11:50 AM
sweet thanks scotty;)

scotty
September 30th, 2004, 12:45 PM
you're welcome=)