I am about to go crazy!!! I have a movie that calls other movie clips with a preload and fade for each external mc called. but after you call and load the swf in the container it dissapears aftre about 30 seconds it disapears if you dont do anything and then it comes back after about 30 seconds.
i am using this script for the preload object and fade.
onClipEvent(enterFrame){
if(dummy ==1){
_root.text._alpha += 10;
}
loaded = _root.clip.getBytesLoaded();
total = _root.clip.getBytesTotal();
num = int(perc) + “%”;
perc = (loaded/total)*100;
bar._width = perc;
if(loaded == total && dummy == 1){
_root.text._alpha = 0;
_root.now = 1;
//trace(“dja”);
}
}
Then this is on every frame to make it use the preload and fade in the new loaded swf after it shows it loading.
clip.loadMovie(“GuardHouse.swf”);
clip._alpha = 0;
now = 0;
text.dummy = 1;
//now load the external file into the myData object
myData.load(“GuardHouse.txt”);
stop();
Also i dont know if this has anything to do with this problem but when i load an external swf it does not show any actions i have in there or any text but does show images and shapes but not dynamic text boxes or fades or anything like that.
You can view it at the url below. I have listed the link to the main movie swf and the map1.swf that it calls when you click on floor plan so you can see when you view the map1.swf by itself there is more stuff that does not show up when loaded into the main swf.
http://www.mojocompany.com/vtour/vtour_main.html
http://www.mojocompany.com/vtour/map1.swf
Please can some one help? I am begging you!!!???