Help please

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

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();
}


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

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.

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

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();

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();
}

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

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