Preloader problem

Hi all,

I want to create a preloader in preloader.as file.
It will be in a seperate file.
When the loading will become 100% then it will load next class file (loadgameScreen.as file)
I use simple coding for that :

public function loading(e:ProgressEvent):void
{
var total:Number = _ROOT_MC.stage.loaderInfo.bytesTotal;
var loaded:Number = _ROOT_MC.stage.loaderInfo.bytesLoaded;

this._loader.percentage_txt.text = String((loaded / total) % 100);
this._loader.bar_mc.scaleX = (loaded / total) * this._loader.bar_mc.width;

if(total == loaded)
{
trace(“loading = 100”); removeEventListener(ProgressEvent.PROGRESS, loading);
startGame();
}
}

but it is not showing the preloaderwhat would be a problem can somebosy tell me ???
please help me.

-soha