What goes wrong when this happen?

hi, guys,

i am facing a weird problem with the preloader that i created for my web.heres the website. http://www.geocities.com/austin_99kyo/Main.html The problem is,when the external swf loading, there is a preloader to show the loading progress in every external swf files. but the weird thing is it only showup the loading bar, but the loading precentage and “loading” clips doesn’t showup. When i test the external swf movie without using the main scene , every thing just fine, the preloader showup together with the loading percentage and the " loading " Clips.The external swf loading percentage and “loading” clips doesn’t appear when i use the main scene to load the external swf…

here is the Action Script that i put in the first frame of every external swf:

[COLOR=navy]bytes_loaded = Math.round(this.getBytesLoaded());
bytes_total = Math.round(this.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
this.loadBarmenu._width = getPercent100;
this.loadTextmenu = Math.round(getPercent
100)+"%";
if (bytes_loaded == bytes_total) {
this.gotoAndPlay(3);
}[/COLOR]

And on the second frame i put this 1:

[COLOR=navy]this.gotoAndPlay(1);[/COLOR]
[COLOR=#000080][/COLOR]
[COLOR=#000080][/COLOR]
[COLOR=black]In the main scene, i put this code in every button that i assign it to load the diffrence external swf files when clicking :[/COLOR]

[COLOR=navy]on (release) {[/COLOR]
[COLOR=navy]if (_root.currMovie == undefined) {
_root.currMovie = “Menu”;
_root.container.loadMovie(“Menu.swf”);
} else if (_root.currMovie != “Menu”) {
if (_root.container._currentframe >= container.midframe) {
_root.currMovie = “Menu”;
_root.container.play();
}
}
} [/COLOR]

There is transition working on in every external swf files.

I m doing the website base on Kirupa tutorial here http://www.kirupa.com/developer/mx2004/transitions.htm

hope some one can tell me what is wrong and how to fix it… Thanks :slight_smile: