Hi all,
I am developing this Flash file that has multiple scenes (most of the scenes are quite long), and I have a "home page" that has buttons to go to each of the different scenes.
Now, assume Scene 1 is the home page, and Scene 2, etc are the other scenes. When I load up the home page, I have a stop action on the first frame with the button in the frame, but when I try to go to another scene, by using a script like:
on (release) {
gotoAndPlay("Scene 6", 1);
}
it will go to the second scene (or whatever scene is loaded up to this point) instead! It seems that if the scene to go to is not preloaded yet, it will just go to the last scene that is loaded. Is there a way to prevent this from happening? Like stop the preloading of whatever scene it is doing, and then go to Scene 6 (or whatever scene is specified in the script) instead?
Thanks!
Willy
I am developing this Flash file that has multiple scenes (most of the scenes are quite long), and I have a "home page" that has buttons to go to each of the different scenes.
Now, assume Scene 1 is the home page, and Scene 2, etc are the other scenes. When I load up the home page, I have a stop action on the first frame with the button in the frame, but when I try to go to another scene, by using a script like:
on (release) {
gotoAndPlay("Scene 6", 1);
}
it will go to the second scene (or whatever scene is loaded up to this point) instead! It seems that if the scene to go to is not preloaded yet, it will just go to the last scene that is loaded. Is there a way to prevent this from happening? Like stop the preloading of whatever scene it is doing, and then go to Scene 6 (or whatever scene is specified in the script) instead?
Thanks!
Willy