# Pre loader problem

**URL:** https://forum.kirupa.com/t/pre-loader-problem/85621
**Category:** flash
**Created:** [April 6, 2005, 4:34am UTC](https://forum.kirupa.com/t/pre-loader-problem/85621 "2005-04-06T04:34:31Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![haridreams](https://avatars.discourse-cdn.com/v4/letter/h/ac8455/32.png) [@haridreams](https://forum.kirupa.com/u/haridreams)
#### Post date: [April 6, 2005, 4:34am UTC](https://forum.kirupa.com/t/pre-loader-problem/85621/1 "2005-04-06T04:34:31Z")

</div>

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();  
}  
};
