Movie pause at the end for 3 secs? HOWTO?

Hi people…
Can anyone please tell me how to pause the whole movie with all the images intact for like 3 secs before being forward to another page?
Thanks

add (3x(the number of frames per second)) frames , like, if your movie has 12 frames/sec, add 36 frames to the point you want to stop till the point you want to change.

=)

This actionscript code should do what you want as well without having to add more frames.

function newpage(){
	getURL("yourpage.html");
	clearInterval(delay);
}
delay = setInterval(newpage(),3000);

Read the forum!!

And you made a small mistake, sorcerer:

delay = setInterval(newpage,3000);

pom (-: