Preloader in external movie

OK I have a preloader in a external movie, it works fine when I preview the single .swf, but when I try to preview it as a external movie being loaded, the preloader doesn’t work, it justs stays there and never loads the movie. Thanks in advance. I would post the .fla but it’s too large.

Here is the actionscript I used:

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)+" percent";
if (bytes_loaded == bytes_total) {
_root.gotoAndStop(3);
}

bytes_loaded = Math.round(this.getBytesLoaded());
bytes_total = Math.round(this.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
this.loadBar._width = getPercent*100;
this.loadText = Math.round(getPercent*100)+" percent";
if (bytes_loaded == bytes_total) {
this.gotoAndStop(3);
}

I tried that and it didn’t work. Do you think I have to upload them? Thanks.

Please :slight_smile:

Ok now it loads, the bar works perfectly, but…
when it gets to 100 it just stays, When I preview just the .swf, it works fine, whats wrong? Thanks.

What you mean by stays? Have you tried using gotoAndPlay?