# Movie pause at the end for 3 secs? HOWTO?

**URL:** https://forum.kirupa.com/t/movie-pause-at-the-end-for-3-secs-howto/9684
**Category:** Uncategorized
**Created:** [December 16, 2002, 4:49pm UTC](https://forum.kirupa.com/t/movie-pause-at-the-end-for-3-secs-howto/9684 "2002-12-16T16:49:36Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![neophyte](https://avatars.discourse-cdn.com/v4/letter/n/d07c76/32.png) [@neophyte](https://forum.kirupa.com/u/neophyte)
#### Post date: [December 16, 2002, 4:49pm UTC](https://forum.kirupa.com/t/movie-pause-at-the-end-for-3-secs-howto/9684/1 "2002-12-16T16:49:36Z")

</div>

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

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [December 16, 2002, 5:04pm UTC](https://forum.kirupa.com/t/movie-pause-at-the-end-for-3-secs-howto/9684/2 "2002-12-16T17:04:50Z")

</div>

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.

=)

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [December 16, 2002, 9:27pm UTC](https://forum.kirupa.com/t/movie-pause-at-the-end-for-3-secs-howto/9684/3 "2002-12-16T21:27:20Z")

</div>

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

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

```

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [December 16, 2002, 10:31pm UTC](https://forum.kirupa.com/t/movie-pause-at-the-end-for-3-secs-howto/9684/4 "2002-12-16T22:31:04Z")

</div>

[Read the forum!!](http://www.kirupaforum.com/showthread.php?s=&threadid=5722)

And you made a small mistake, sorcerer:

delay = setInterval(newpage,3000);

pom (-:
