PDA

View Full Version : Movie unload and load


JimmyS
06-12-2007, 10:01 PM
I am new to both flash and actionscript so please bare with me.

I use the below actionscript to change the page once a button is pressed.

button_btn.onRelease = function(){
unloadMovieNum(1);
loadMovie("page.swf",1);
}


It works, but it loads the page under the "header" area. I want the first page and header area both to disappear and the page.swf to load overtop EVERYTHING.

What is the bast way to accomplish this?