Flash AS3 Preloader

Hey Guys,

I’ve been trying to get this preloader working for days! I finally got it working, and now when i upload it to my site and refresh the page, the .swf file is stuck at the preloader screen.

This is my code:

 
//Stop Frame
stop();
//Create a listener to call the loading function as the movie loads
this.loaderInfo.addEventListener (ProgressEvent.PROGRESS, loading);
//Runs when the loading progress has changed
function loading(event:ProgressEvent):void
{
//Determine the percent loaded from bytesLoaded and bytesTotal
var percent:Number = event.bytesLoaded / event.bytesTotal * 100;
//Stretch a progress bar
progressBar.scaleX = percent / 100;
//Set the progressText text box to the percent loaded
progressText.text = int(percent) + "%";
//When the load is finished, go to frame 2
if(percent == 100)
{
this.gotoAndStop(2);
}
}

I’ve been reading up on it for a while now, but I can’t seem to figure it out. I’d really appreciate it if I can get some advice as to what to do.