Hi, i have a problem with this function
//insert the container, an empty MC
attachMovie("container","container",_level0.getNextHighestDepth());
container._x = 145;
container._y = 40;
//assign an onEnterFrame for it to follow the _y pos of another MC
**container.onEnterFrame = function() {**
**this._y = _level0.scrollbar._y;**
**trace (_level0.scrollbar._y);**
**};**
//if the MC container had have inside anything, like a circle, everything works fine until here, where i want next to load a swf movie inside this MC
//listener functions
var mclListener:Object = new Object();
mclListener.onLoadComplete = function(target_mc:MovieClip) {
_level0.charging_text.removeMovieClip();
};
//create a loader
var image_mcl:MovieClipLoader = new MovieClipLoader();
//assign the listener
image_mcl.addListener(mclListener);
//load the swf
image_mcl.loadClip("movie.swf",container);
for testing, i tryed all the script but the listener functions and it worked fine, but when i load the clip, neither the _y or the trace functions worked…
i mean, the onEnterFrame function is the script that is not working, what can be the mistake?
sorry for the bad english!