:puzzled: NEED HELP! Forgive me If this has already been asked :-\

Im making a FULL Flash Website…:slight_smile:

But Im having a problem…:sigh:

How Do I get scene 1 to stop at Frame “X”

and then sit at frame “X”

Until the view click the button that will take them to scene 2?

I hope my question is clear…:A+:

In scene one you should make a layer called the actions layer, then take that layer to whatever frame you want it to stop and and press F6, this will make a keyframe there. The you will put the following code IN THE FRAME.

stop();

Then you need to make a button in a seperate layer, if you dont know how to make a button you need txt and a bg and then select all of that and press F8. then change it from the default movie clip to button. Now in this button you said you wanted it to go to scene teo frame one so you would do the following code WITHIN THAT BUTTON.


on (release) {
	gotoAndPlay(Scene2, 1);
}

Thanks, but I found out making seperate movies then connecting them by a button would be easier…

Or would it?