Basic Flash Question
- Started
- Last post
- 4 Responses
- Robo
I want to go from one movie (level0) to a specific scene within another movie (level1) ?
Can someone please tell me the actionscript?
I have done this loads of times before but my mani movie has never been on level0?
- neeko0
i dont think i really understand your question the way its worded, but off the top of my head
_level1.movie2.gotoAndPlay(scene... frame);
- Robo0
Sorry neeko,
I want to put an action on a button in a movie which currently sites at level 0.
The action will load "movie2.swf" into level 1.
This is fine...
However, I also wish to go to a specific frame in movie2.swf when it is opened?
- unformatted0
on (press) {
_level1.gotoAndPlay(YOURFRAME);
}
- neeko0
well, both statements can go inside the 'on (release) {}' function.
on (release) {
loadMovie();
_level1.name.gotoAndPlay();
}