Here’s the situation:
Start.swf has nothing in it but this AS in second frame: loadMovieNum(“Resources/Game.swf”, 0);
In the folder “Resources” are all my swf movies including “Game.swf”, which opens fine from the AS above.
However, when clicking on a button in the Game.swf to open another swf, none of the other swfs open. All the other swfs are also in the Resources folder.
Here’s the code for one of the buttons in the Game.swf:
on (release) {
loadMovieNum(“Menu.swf”, 0);
}
Interesting: If I open Game.swf by itself in the Resources folder, all the other swfs open fine. Again, they do not open if I start it using the Start.swf.
This game is going on a CD, not on web for now.
Question: What code do I need so when someone opens Start.swf, it opens Game.swf within the Resources folder and Game.swf buttons will then open the other swfs connected to it, which are also in the Resources folder?
Thanks