PDA

View Full Version : preload problem


eroteme
04-09-2007, 04:53 PM
I made a quick flash promo and I uploaded it on my website - and when I check it from my own comp (clearing my history of course) the preloader gets stuck at like 33% ..

I sent the link around to other people and some people get it to load fully , and others it gets stuck too... I cannot figure out why and its really bothering me here is the code im using for my preloader (I just wanted a Dynamic Text Countdown no image)

stop();
onEnterFrame = function(){
var percent_loaded = _root.getBytesLoaded()/_root.getBytesTotal();
loadText = percent_loaded;
if (percent_loaded == 1){
delete onEnterFrame;
play();
}
}

and then on the next frame (frame2) I have

stop();

and my whole movie is on frame 2 in a MC

but how is it possible it loads on some peoples computers and it loads in the bandwidth profiler on flash - but then it doesnt load on others ?? Any help would be appreciated!!