hi guys ,
I have a problem with my pre loader. It’s opening like a pop-up. It’s appearing only after loading 20 to 30 percent. I have used the following script. pls help me…
this.onEnterFrame = function() {
loaded = int(getBytesLoaded()/getBytesTotal()*100);
percent = loaded+"%";
_root.my_mc._xscale = loaded;
if (getBytesLoaded() == getBytesTotal()) {
delete this.onEnterFrame;
nextFrame();
}
};