Help with pre-loader

Hi Guys,

I have a pre-loader swf that runs and then loads my game which is a seperate swf. (I followed a tutorial that told me to do it that way). Anyway when i load the swf file it just loads straight into the new swf and no progress bar appears. If i run it in flash i can simulate the download and it works fine. Just doesnt work if you run at is a stand alone swf file.

My code is as follows:

stop();
siteLoader.loadMovie(“bouncing game.swf”);
loadingBar._xscale = 1;
loadingBar.onEnterFrame = function()

{
    kBytesLoaded = this._parent.siteLoader.getBytesLoaded() / 1024;
    kBytesTotal = this._parent.siteLoader.getBytesTotal() / 1024;
    percentage = Math.round(kBytesLoaded / kBytesTotal * 100);
    this._xscale = percentage;
    
    if (percentage == 99) 
        {
            delete this.onEnterFrame;
        }
}

Cheers in advance.