# What's wrong?

**URL:** https://forum.kirupa.com/t/whats-wrong/53780
**Category:** programming
**Created:** [June 7, 2004, 9:11pm UTC](https://forum.kirupa.com/t/whats-wrong/53780 "2004-06-07T21:11:56Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Uli](https://avatars.discourse-cdn.com/v4/letter/u/ccd318/32.png) [@Uli](https://forum.kirupa.com/u/Uli)
#### Post date: [June 7, 2004, 9:11pm UTC](https://forum.kirupa.com/t/whats-wrong/53780/1 "2004-06-07T21:11:56Z")

</div>

Hello, i’m driving crazy here…

```php

myLoadvars.load("http://localhost:8080/Tests/music.php");
myLoadvars.onLoad = function(succes) {
	if (succes) {
                          _root.createEmptyMovieClip("container", 400);
		_global.songtotal = parseInt(this.musictotal);
		for (i=0; i<_global.songtotal; i++) {
			_root["myCover"+i] = this["Cover"+i];
			_root.container.duplicateMovieClip(["container"+i], 500+i);
			loadMovie(_root["myCover"+i], _root["container"+i]);
			_root.onEnterFrame = function(){
				trace(_root["container"+i].getBytesLoaded())// traces undefined
}}}

```

I just can’t get the bytes loaded of my MCs…
