Okay I have a question that should be very easy for you guys. I am trying to launch a external swf into a MC with the instance “container”. I have a button that when clicked has this as the action:
on (release) {
_root.container.loadMovieNum("black.swf",0);
}
I figured this would work but for some reason it will not. If I take out the “_root.container” the .swf launches but obviously not where I want it to. I tried “_parent.container” and “container” but none of them work. What am I doing wrong here?