Keeping swf files from playing

Yes.

Add a button to the 1st scene that when clicked, plays the next scence.

I can't remember the ActionScript for it though, its been a while.

Good Luck.
Jamie.
 
It's best to create an additional layer for actionscript, then in the first frame of the movie, you type:

stop();

then, for your button the actionscript would look like:

on (release){
gotoAndPlay("Scene", frame#);
}
 
Back
Top Bottom