# Preloader struggles

**URL:** https://forum.kirupa.com/t/preloader-struggles/68336
**Category:** flash
**Created:** [October 25, 2004, 3:42am UTC](https://forum.kirupa.com/t/preloader-struggles/68336 "2004-10-25T03:42:16Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![jondj24](https://avatars.discourse-cdn.com/v4/letter/j/5f9b8f/32.png) [@jondj24](https://forum.kirupa.com/u/jondj24)
#### Post date: [October 25, 2004, 3:42am UTC](https://forum.kirupa.com/t/preloader-struggles/68336/1 "2004-10-25T03:42:16Z")

</div>

Hello.  
I am having preloader problems. I thought i coded this loader perfectly, but when i see the movie, nothing happens.

the code i have for the loader is below:

```auto

onClipEvent (enterFrame) {
	loading = _parent.getBytesLoaded();
	total = _parent.getBytesTotal();
	percent -= (percent-((loading/total)*100))*.25;
	per = int(percent);
	percentage = per+"%";
	loadBar._width = per;
	if (percent>99) {
		_parent.gotoAndStop(2);
	}
}

```

attached is my file.  
thank you
