# \[MX04\] MovieClipLoader, tried everything

**URL:** https://forum.kirupa.com/t/mx04-moviecliploader-tried-everything/195087
**Category:** flash
**Created:** [July 28, 2006, 9:37am UTC](https://forum.kirupa.com/t/mx04-moviecliploader-tried-everything/195087 "2006-07-28T09:37:09Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Pixelangry](https://avatars.discourse-cdn.com/v4/letter/p/77aa72/32.png) [@Pixelangry](https://forum.kirupa.com/u/Pixelangry)
#### Post date: [July 28, 2006, 9:37am UTC](https://forum.kirupa.com/t/mx04-moviecliploader-tried-everything/195087/1 "2006-07-28T09:37:09Z")

</div>

fadein is the movieclip everything is being loaded to.  
percent = dynamic text field with the instance name of percent

Problem:  
Doesn’t show the percent loaded or anything, all it shows is “Loaded” when the text is finished, i even added like 900 components to make sure u NEED the preloader. anyone got any ideas what i did wrong?

```auto
main = [b_home, b_about, b_contact];
mainURL = ["home.swf", "about.swf", "contact.swf"];
sub = [b_logotype, b_graphic, b_web, b_interactive, b_print];
subURL = ["logotype.swf", "graphic.swf", "web.swf", "interactive.swf", "print.swf"]

//main links
var mcl:MovieClipLoader = new MovieClipLoader();

var mclL:Object = new Object();

mclL.onLoadProgress = function(target,loaded,total) {
precent.text = Math.round((loaded / total) * 100) + "%";
}

mclL.onLoadComplete = function() {
percent.text = "Loaded";
}

mcl.addListener(mclL);

//home
main[0].onRelease = function() {
    fadein._x = 210;
    fadein._y = 55;
    trace(percent.text)
    mcl.loadClip(mainURL[0], fadein)
}

```
