load external swf into existing mc
I think this is very old question,
in as2 you can just add a external swf inside a mc. like this - loadMovie ("example.swf", "_root.mc"); and that's it.
how do i do that in as3? this following doesn't work..
var newLoader:Loader = new Loader();
function loadMc(evt:MouseEvent) {
var request:URLRequest = new URLRequest("example.swf");
newLoader.load(request);
addChild(mc.newLoader);
}
can I go remove mc first, and then add the swf as mc again?
removeChild(mc);
addChild(mc);