How can I "test" a preloader?

OK, i’ve been wondering this for quite some time now… how can i test a preloader… if i have an animated preloader, and want to make shure that everything works? It’s such a small swf that i can’t see if the preloader is doing waht it’s supposed to!

:ear:

this is the AS i’m using

load_mc.onEnterFrame = function(){
var getPercent = _root.getBytesLoaded() / _root.getBytesTotal();
var goFrame = Math.round(getPercent * 50);
this.gotoAndStop(goFrame);
if (goFrame == 50) { // preloading finished
_root.nextFrame();
}
}

in flash press ctrl+enter twice then press ctrl+b and go to the view tab and check the connection speed settings and choose 14kbps that way you can see it as if you were on a real slow connection :wink:

and thank YOU for that :hr: :beam: