So, I have searched the internet high and dry to find out how to preload external swf’s into my main site. I have tried all sorts of differents codes and ways to set it up, but nothing seems to work. I have a preloader I use to load the whole site, with this code
myProgressBarListener = new Object();
myProgressBarListener = function (eventObject) {
myProgressBar._visible = false;
gotoAndStop(“home”);
};
myProgressBar.addEventListener(“complete”, myProgressBarListener);
myProgressBar.mode = “polled”;
myProgressBar.source = “_root”;
myProgressBar.conversion = “1”;
myProgressBar.label = “LOADING %3%%”;
myProgressBar.direction = “right”;
myProgressBar.labelPlacement = “bottom”;
stop();
is there a way i can take this code and the preloader i have made and place it on one frame in my timeline and change the code a little bit to provide for my external swf to be loaded into a holder?
If anyone has links to how to do this easily that would be awesome. I am having quite a headache trying to figure this out. I have a lot of photo galleries that i need to preload when the button is hit and you are directed to that frame in the movie, so people have something to look at while that photo series loads.
thank you.