Preloader quirk?

Hey all…

Quick question about a file I’m trying to add a preloader to. For some odd reason when I preview my movie the bandwidth profiler is telling me that ALL my data is loading on frame 1 (approx. 32 kb). Unfortunately the flash player is halting the playing of my preloader until all the content is loaded already. So it’s going from frame 0 to frame 3 without showing the progress of the load.

Is there a way I can get this larger portion onto a later frame so the progress loader will show??

Here’s my code for the preloader (which I got from kirupa):

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) {
gotoAndPlay(“main”, 1);
}

Then there is a “gotoAndPlay(1);” on frame 2. Any help would be very much appreciated!!