i have multiple SWFs loading on multiple button clicks. so by default i have one.swf loaded on the screen. now when button two is clicked i load two.swf replacing one.swf. similarly when button three is clicked i load three.swf.
is there anyway i can preload two.swf, three.swf and other swf files in the background so that when user clicks on the button to view these, the swf is already loaded and takes no time to appear.
the movie clip blank1 loads by default on top of every blank movie clip (may be because of the stacking order)
now on click of button 2 i have this:
_root.blank1.loadMovie(“two.swf”);
similarly, on click of button 3 i have this
_root.blank1.loadMovie(“three.swf”);
so- now when i really have to view those SWF files, i load them on BLANK 1 movie clip and just to keep them loaded on the screen, i use blank2, blank3 etc.