Hi,
I have the following code which is working fine:
var mySwf1:SWFLoader = new SWFLoader("HandBook.swf", {width:600, height:400, container:this, onComplete:completeHandler1});
mySwf1.load();
function completeHandler1(event:LoaderEvent):void {
TweenLite.to(event.target.content, 0,{alpha:0});
TweenMax.fromTo(event.target.content, 3, {x:0, y:0, width:600, height:400, alpha:.5}, {x:0, y:0, width:600, height:400, alpha:1, delay:1});
}
The question is, how can I modify the below line of code to load this "HandBook.swf" external file into specific movie clip? Say, I have mc1, mc2, mc3 movie clips and I want to load this "HandBook.swf into mc2 movie clip.
Thanks in advance for any help.