Preloading a scene :S

hey guys… ok im trying to preload a certain scene… i put this on the first frame of my preloader

LOADED = Math.round(getBytesLoaded());
TOTAL = Math.round(getBytesTotal());
PERCENT = LOADED/TOTAL;
BAR._width = PERCENT400;
TEXT = Math.round(PERCENT
100)+"%";
if (LOADED==TOTAL){
gotoAndPlay(“scene1”);
}

[ preloader is scene3, but i rearranged them… :smiley: ]

then i put this on the second frame of the preloader

_parent.gotoAndPlay(1);

i know that something is seriously wrong with the code… coz what comes out is Infinity% … :frowning:

please help me !!! !:smiley: