Need help on how to pause a flash movie to few sec

Can someone sort my problem out, i have searched to try and find online help on how to pause a flash mx movie for 10 secs and then continue to a html page.

i need assistance very much.

abie

OK… :stuck_out_tongue:

Insert an empty MovieClip in the frame when you to stop the movie, open the Actions Panel and put this code on the MovieClip actions:
[AS]onClipEvent (load) {
this._parent.stop();
seconds = 10;
timer = getTimer();
}
onClipEvent (enterFrame) {
if (getTimer()-timer>seconds*1000 && !redirected) {
getURL(“http://www.kirupa.com”, “_self”);
redirected = true;
}
}[/AS]
=)