i’m using the loadMovieNum(); to load external swf files into my main movie…
is there any way that i could use that action and direct it to play a certain scene within the loaded movie…
example… i have the main movie called main.swf
from main.swf i put a button and on the button i give the action:
on(release){
loadMovieNum(“page.swf”,2);
}
this will load the new movie onto level two inside main.swf, right?
is there anything i could ad to that to make it load the 3rd scene of page.swf… or would i have to tear the whole project up and seperate all the scenes as seperate external files?
It actually loads the movie into level 2 of the flash “player”, not the main swf… just for the record. There are subtle differences.
Instead of scenes, try using frame labels. Find the place where you want the movie to goto, create a frame label layer if you don’t already have one. Set a frame label like “startingFrame”.
it doesn’t work… all my “pages” that are loaded goes onto level2, so they actually replace eachother.
so i’m sitting on a “page” (already on level2)… now i click the button on THAT “page”… its going to execute the script in THAT order… first it loads the new “page”, and… oops! the rest of the script is gone… meaning no new frame label or new scene.