# Preloading On different Levels

**URL:** https://forum.kirupa.com/t/preloading-on-different-levels/151463
**Category:** flash
**Created:** [June 15, 2005, 5:18pm UTC](https://forum.kirupa.com/t/preloading-on-different-levels/151463 "2005-06-15T17:18:24Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![smoothblend](https://avatars.discourse-cdn.com/v4/letter/s/71e660/32.png) [@smoothblend](https://forum.kirupa.com/u/smoothblend)
#### Post date: [June 15, 2005, 5:18pm UTC](https://forum.kirupa.com/t/preloading-on-different-levels/151463/1 "2005-06-15T17:18:24Z")

</div>

First off thank you for helping me out. I have read many posts about this and I haven’t really found anything out about loading with loadMovieNum. Im sure it may be easy for some  
people but for me. Im LOST! Once again, thank you!

Ok here is my problem. I have a main movieclip (preload\_test.swf) witch has a custom preloader built-in ( I would like to use it againg and again). I have NO- Idea on how to code somthing like this. So I am just going to post the FLA with the SWFs. I am really sorry about not zipping it. I am at work and they do not have winzip.

PS: This is the code I am using now for the preloader. Im asuming that I can use the same preloder over and over. I just dont know the code.

MX2004…

```auto
bytes_loaded = Math.round(_root.getBytesLoaded());
bytes_total = Math.round(_root.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
_root.loadBar._width = getPercent*100;
_root.loadText = Math.round(getPercent*100)+"%";
if (bytes_loaded == bytes_total) {
_root.gotoAndStop(3);
}

```

So if you do modify my code could you please leave the [color=blue]instance[/color] names the same.

I had to upload the FLA to my server.  
FLA = [http://www.smoothblend.com/preload\_test.fla](http://www.smoothblend.com/preload_test.fla)

THANK YOU!!!
