Loading External swf over each previous one

hi i have like 7 pages, and i have each one, i want the new one, (whichever button you choose (swf loading)) to load over the existing swf… beacus i dont want there to be a pause in the pages, i want the new one to load up, and sotp on the first frame, over the current swf, then start the loading, and unload the swf that was previous.

so like if each swf is named “page” i want it to be like on press for button load “page” then when the new one starts, on clip event unload movie num (page) but i want each “page” to load over the current one… heheh understand? thanks…

okay cheez00 here is what you do. for example lets say you have a home, about and contact button. what we are going to be doing is loading swf as levels. this way we can tell flash what to load over what. im not sure why you want to load a swf over another and then unload the first one on frame 1 but here is how you do it.

home actions:
on(release){
loadMovieNum(“home.swf”,1);
}

now once you have home.swf loaded it isn’t possible to unload another external movie(about.swf) from actions in your home.swf
what you should do is simply unload the about.swf on home buttons events.

so change your code to this:
on(release){
loadMovieNum(“home.swf”,1);
unloadMovieNum(2);
}

movienum2 being you about.swf

you cant use onClipEvent because your not loading movie clips, your loading actual swf movies. you could do this through the “with” action, but if you have 7 pages your index might get a little laggy. i would suggest going over the way you are structung your flash movie. maybe take a different approach because it sounds to me your confusing swf’s with movie clips.

pm me if you need further assistance. i will help you structure your flash movie properly.

-digital