technoknow
Technical User
I have 3 scenes. There are 2 navigation buttons that are in all 3 scenes. Scene 2 and scene 3 have movie clips that I'm trying to play using:
home.onRelease = function() {
gotoAndPlay("Scene 2",1);
};
about.onRelease = function() {
gotoAndPlay("Scene 3",1);
};
This works fine except when trying to play the scene that you're in. For instance if you are in Scene 2 and hit the "Home" button to play scene 2 it goes to the next scene instead.
I can jump from scene 1 to 3 or from Scene 3 to 2 but why can't I jump from scene 2 to 2? Should I just replay the scene I'm in using a different command?
Hope this is clear enough for you guys to understand, I've been reading posts on the subject of scenes and know that they are a pain. I'd like to figure out why this doesn't work but if there is an easier way to do what I'm trying to do without using scenes I'd sure like to hear it.
Maybe I should make scene 1 a mc and have the other mc's play inside of it.
Thanks for your help, you guys are great!
TechNoKnow
home.onRelease = function() {
gotoAndPlay("Scene 2",1);
};
about.onRelease = function() {
gotoAndPlay("Scene 3",1);
};
This works fine except when trying to play the scene that you're in. For instance if you are in Scene 2 and hit the "Home" button to play scene 2 it goes to the next scene instead.
I can jump from scene 1 to 3 or from Scene 3 to 2 but why can't I jump from scene 2 to 2? Should I just replay the scene I'm in using a different command?
Hope this is clear enough for you guys to understand, I've been reading posts on the subject of scenes and know that they are a pain. I'd like to figure out why this doesn't work but if there is an easier way to do what I'm trying to do without using scenes I'd sure like to hear it.
Maybe I should make scene 1 a mc and have the other mc's play inside of it.
Thanks for your help, you guys are great!
TechNoKnow