Buttons and blows
Here's how to make a replay button.
Make a new layer. On the last frame of the last scene place a graphic for a button on the stage.
Click on the button graphic and hit F8 to make it into a symbol. Select button from the symbol type list to make it into a button symbol.
Make another layer and click on the last frame so it's on the same frame as the button. Hit F6 to make a keyframe. Hit F9 to go to the actionscript window and put in this command.
stop();
This makes your movie wait at that frame for user input.
Close the actionscript window and click on the button. Hit F9 to open the buttons actionscript window and put in this code:
on (press) {
gotoAndPlay(1);
}
This will make the movie jump to the 1st frame of the scene and run it again when the user clicks on the button. Likewise you could put all this in another scene and make it jump to whatever scene you like.
The movie wasn't bad. The editing was pretty good. I bet you had fun making it.