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);
}