PDA

View Full Version : A Preloader Problem


karlzoe2
11-18-2002, 10:47 PM
I am trying out my first preloader. I have actions in two frames, 4 and 5 which are respectively:

framesLoaded =_level0._framesloaded;
totalFrames = _level0._totalframes;
percentLoaded = Math.round ((framesLoaded/totalFrames)*100 );
bar._yscale = percentLoaded;

if (framesLoaded == totalFrames) {
gotoAndPlay ("main", 1);
}else {
gotpAndPlay ("preloaderloop");
}


however when i preview it and click on view "show streaming" nothing happens

what could the problem be.


please help this really need some help newbie

friz2002
11-19-2002, 12:46 AM
Hi,

Push CTRL+ Enter .set to 56k or lower (debug) and press CTRL + enter again to see the preloader work

simontheak
11-20-2002, 01:53 PM
Have you got it working yet? Because if not I've noticed a typo.

Not sure if it's just an error on this forum, but you've put

gotp AndPlay ("preloaderloop");

when you want

gotoAndPlay("preloaderloop");

karlzoe
11-20-2002, 05:03 PM
again. thanks SOOOOOOO !!!!!! MUCH I did not notice that