Empty MC Preloading Trouble

Well i searched the forums, and although I found several posts with virtually the same problem as I am having, none of them came with a solution. My problem is this:

I have a main movie, with a preloader at the beginning. I am then loading external swf’s into an empty mc at frame 10. These external swf’s have their own preloaders attaches. They all work on their own but when combined, the preloaders get stuck somewhere and load both at the start of the main timelines loading… I want the preloader for the main swf to load only the main swf content, and the other one to wait until frame 10 to start.

Ive heard several people that just say add a preloader at the beginning of ever swf and it will work, but it doesnt. Ive played around with _root and _parent to try and correct the situation but cant seem to figure it out. I can post fla’s if you would like…

Thanks!

On the preloaders for the external swfs, go through the script and change all the “_root” to “this.”

Without the quotation marks of course.

Thanks for the quick reply EG, but that didnt solve it. Actually thats the way I had it before.

Any more ideas?

umm I’ve dont this before, let me look @ my project. plz hold…

Here is the code that I used in this project for my preloader.

http://www.kernhigh.org/hire I just used _root and as you can see in the working example… well it works!

bytes_loaded = Math.round(_root.getBytesLoaded());
bytes_total = Math.round(_root.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
_root.loadBar._width = getPercent100;
_root.loadText = Math.round(getPercent
100)+"%";
if (bytes_loaded == bytes_total) {
_root.gotoAndPlay(3);
}

Thanks Digital… but i figured it out.

The thing was that when you preview things in flash it uploads empty MC content at full speed, even if you hit Ctrl+Enter twice to make it load slow. I didnt know this.

I uploaded the files to my server, and the preload works fine.

Thank you guys for your help!

DigitalPimp, that would work for the main movie since it’s referring to the main timeline with _root.

If posix, wants to use that for the external movies, he/she would have to change all those _root. to this.

That’s how my preloader works.

And of course, now I find threads with this in the search… ugh I need sleep. haha

Is there any external programs that will load all movies as if you were viewing them on the internet? To load the files to my server every time I want to check them seems kinda tedious.

Thanks

Me agree with EG
:beam: