# New MovieClipLoader

**URL:** https://forum.kirupa.com/t/new-moviecliploader/115656
**Category:** Uncategorized
**Created:** [July 10, 2004, 3:46pm UTC](https://forum.kirupa.com/t/new-moviecliploader/115656 "2004-07-10T15:46:15Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![flashborne](https://avatars.discourse-cdn.com/v4/letter/f/85f322/32.png) [@flashborne](https://forum.kirupa.com/u/flashborne)
#### Post date: [July 10, 2004, 3:46pm UTC](https://forum.kirupa.com/t/new-moviecliploader/115656/1 "2004-07-10T15:46:15Z")

</div>

can anybody help out with the new MovieClipLoader?

i trully don’t know why it’s acting up…

all i have on the stage is an empty mc called “mc” and a dynamic tf “feedback”

i want to trace the very first bytes that are loaded withing the onLoadStart callback

```auto

myMCL=new MovieClipLoader();

myMCL.onLoadStart=function(target){
		_root.feedback.text+="LoadStarted ";
		stats=myImage.getProgress(target);
		_root.feedback.text+="Loaded"+stats.bytesLoaded+" ";
		_root.feedback.text+="Total"+stats.bytesTotal+" ";
		
	}
myMCL.onLoadComplete=function(target){
	_root.feedback.text+="LoadComplete";
}
myMCL.loadClip("more.jpg", mc);

```

returns “LoadStarted Loaded0 Total0 LoadComplete”  
why can’t it trace the loaded bytes and total bytes. What can go wrong? I’m testing locally through a browser and online…  
thanks for any help…
