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(PERCENT100)+"%";
if (LOADED==TOTAL){
gotoAndPlay(“scene1”);
}
[ preloader is scene3, but i rearranged them… ]
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% …
please help me !!! !