i downloaded the "advanced preloader" from spoono and pasted it all exactly as is. when i test it out, it jumps to Scene 2 and doesn't play.
here's code from the preloader scene (scene 1):
loadedbytes = getBytesLoaded();
totalbytes = getBytesTotal();
loadedkbytes = Math.ceil(loadedbytes/1000);
totalkbytes = Math.ceil(totalbytes/1000);
if (loadedbytes == totalbytes) {
nextScene ();
}
frame = int(loadedbytes/(totalbytes/100));
tellTarget (_root.loader) {
gotoAndStop (_root.frame);
}
in the next frame is:
gotoAndPlay (1);
oh btw, im using flash 5. this is really annoying me.

any help is greatly appreciated!