I found my problem. I just don’t know how to target it. I’m trying to load an external swf, when releasing a button. The problem is the button is not on the main timeline, but instead nested in a movie clip. I just don’t know how to target that button. I tried loading the swf with a button on my main timeline and it worked, so I know the problem is not with the movie clip loader class or the actual swf itself. I actually learned this from a note midway down the page in one of your tutorials… http://www.kirupa.com/developer/mx2004/transitions2.htm
how can i target that button that is nested in that movie clip?
here’s my actionscript btw
var myMCL:MovieClipLoader = new MovieClipLoader();
loader.addListener(this);
artbar_mc.artBtn_1.onRelease = function() {
myMCL.loadClip(“art_1.swf”, “container_mc”);
};
any help is much appreciated!