Hey,
I have a question about some actionscript. Basically, I have a movie clip that I want to play when I click a button, and then have the button take us to another scene. Right now, I’m having problems with getting the clip to play before going to the next frame. What I pretty much need, I think, is a delay or something so that it lets the movie clip play all its frames, and then let it process the gotoAndPlay code. Here’s my code:
Code keeping movie clip from playing. It’s on frame one.
[INDENT]_root.fadeout.stop();
[/INDENT]This is the button code.
[INDENT]on (press) {
_root.fadeout.play();
// Can I put a delay here for a number of frames?
gotoAndPlay(“Scene 2”, 1);
}
[/INDENT]Thanks bunches for your help.