Preloading

Hi, I am trying to make preloder appear on the site i am creating. I did everything correctly. What i want only is the percent of the site loaded.
I did this before lots of times. But now the numbers does not appear. But the preloader works, i mean it waits till the whole site loads and then starts the animation. Help!
Here are the codes of the first frame, if it helps:


bytes_loaded = Math.round(this.getBytesLoaded());
bytes_total = Math.round(this.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
this.loadText = Math.round(getPercent*100);
if (bytes_loaded == bytes_total) {
this.gotoAndPlay(3);
}


Thanks