# Help please

**URL:** https://forum.kirupa.com/t/help-please/447
**Category:** random
**Created:** [July 17, 2002, 7:42pm UTC](https://forum.kirupa.com/t/help-please/447 "2002-07-17T19:42:07Z")
**Posts on this page:** 8
**Page:** 1

<div class="post-metadata">

### Author: ![cheezewhip5](https://avatars.discourse-cdn.com/v4/letter/c/b2d939/32.png) [@cheezewhip5](https://forum.kirupa.com/u/cheezewhip5)
#### Post date: [July 17, 2002, 7:42pm UTC](https://forum.kirupa.com/t/help-please/447/1 "2002-07-17T19:42:07Z")

</div>

how do i make it so that the animation stops and shows a button that you have to click to continue?

---

<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: [July 17, 2002, 7:50pm UTC](https://forum.kirupa.com/t/help-please/447/2 "2002-07-17T19:50:54Z")

</div>

## Well if you want the movie to stop on a frame put this:

stop();

* * *

## And on the button that continues the movie:

on(release) {  
play();  
}

* * *

---

<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: [July 17, 2002, 9:30pm UTC](https://forum.kirupa.com/t/help-please/447/3 "2002-07-17T21:30:05Z")

</div>

when i test the movie, it says this:

Scene=Scene 1, Layer=Layer 1, Frame=1: Line 1: Statement must appear within on handler  
stop ();

Generator is not enabled for this movie. c:\windows\TEMP\Movie11.swf

---

<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: [July 17, 2002, 9:36pm UTC](https://forum.kirupa.com/t/help-please/447/4 "2002-07-17T21:36:36Z")

</div>

That happened because you put the **stop();** action on a button or movie clip instead of on the Flash time line. Take it off the button or movie clip and then place it on the exact frame that you want it to stop at by using the timeline at the top of the macromedia flash program.

---

<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: [July 18, 2002, 2:37am UTC](https://forum.kirupa.com/t/help-please/447/5 "2002-07-18T02:37:35Z")

</div>

i’m VERY sorry, but i still don’t get it…where would i place the actions?

---

<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: [July 18, 2002, 2:51am UTC](https://forum.kirupa.com/t/help-please/447/6 "2002-07-18T02:51:12Z")

</div>

Those little white boxes in the right of this picture are the frames…right click on the frame you want to stop and Click the menu button called ‘Actions’ then place the stop action in that window:

stop();

![](http://www.kirupa.com/developer/actionscript/images/preloa1.gif)

And make a button and place it on the same frame and right click the botton and chose actions again and put this code in the window:

on(release) {  
play();  
}

---

<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: [July 18, 2002, 3:25am UTC](https://forum.kirupa.com/t/help-please/447/7 "2002-07-18T03:25:51Z")

</div>

oh… ok now i get it! haha, thank you very much, and i’m sorry for the trouble 🙂

---

<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: [July 18, 2002, 3:38am UTC](https://forum.kirupa.com/t/help-please/447/8 "2002-07-18T03:38:02Z")

</div>

Don’t worry, its what I am here for!
