# MovieClipLoader onProgress not firing

**URL:** https://forum.kirupa.com/t/moviecliploader-onprogress-not-firing/192092
**Category:** Uncategorized
**Created:** [June 26, 2006, 2:28am UTC](https://forum.kirupa.com/t/moviecliploader-onprogress-not-firing/192092 "2006-06-26T02:28:11Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![shell2006](https://avatars.discourse-cdn.com/v4/letter/s/7993a0/32.png) [@shell2006](https://forum.kirupa.com/u/shell2006)
#### Post date: [June 26, 2006, 2:28am UTC](https://forum.kirupa.com/t/moviecliploader-onprogress-not-firing/192092/1 "2006-06-26T02:28:11Z")

</div>

Hello,

I’m tried and I can’t stop the bug. Does anyone want to give me a hand:

```auto

var mcl:MovieClipLoader = new MovieClipLoader();
var mcl_L:Object = new Object();
mcl.addListener(mcl_L);
function load_pic() {
    if (this.hitTest(this._parent._parent._xmouse, this._parent._parent._ymouse, true)) {
        mcl.loadClip(images[this.num], picture_mc);
        //
        mcl_L.onLoadStart = function() {
            trace("load started"); // traces just fine!
        }
        mcl_L.onLoadProgress = function(target, loaded, total) {
            trace("running"); // never fires!
        }
            /*
            var per:Number = Math.round(loaded/total);
            if (per>0) {
                preloader_mc._visible = true;
                preloader_mc.bar_mc._xscale = per;
            }
        };*/
        //
        mcl_L.onLoadInit = function() {
            trace("loaded"); // traces just fine
            preloader_mc._visible = false;
            picture_mc._x = BG_mc._x+(BG_mc._width/2)-(picture_mc._width/2);
            picture_mc._y = BG_mc._y+(BG_mc._height/2)-(picture_mc._height/2);
        };
    }
}

```

Stop the bug?  
Thanks.  
🙂
