I have two swf, A.swf and B.swf: B.swf is a child of A.swf.i want to access the variable of a.swf in b.swf.Is it Possible?How Can i do this? please Explain With Example. Thanks in Advance
loader.load(new URLrequest"b.swf"));
loader.contentLoaderInfo.addEventListener(Event.COMPLETE, swfLoaded)
function swfLoaded(e:Event):void
{
data= e.target.content; //data is the String i declared outside
mainContainer.addChild(loader);In this Loader i want to dispaly the data
}