Intro to a game

:m: I am making an intro to a game. I am making the opening sequence then i need it to stop and make people press a play button to continue to the next scene. How do I achieve this.

Place a stop action on the frame that the intro ends,
on that frame place a button with the actions

on (release) {
gotoAndPlay(1);
}

change 1 to the number of the frame where you want it to go.

Or if you are laoding a movie into an empty movie clip the action would be

on (release) {
_root.contents.loadMovie (“place movie name here.swf”);

}

TD