EDIT
UPDATE MARCH 12TH 2012: This is done using AIR FOR ANDROID USING CS5.5. I need access to the vars in the newly EXTERNALLY LOADED SWF files that are hosted on a web server and I need to have the APP on my phone access them. I am beginning to this is not possible.
------------------------------------------------------------------------------
My Main Stage swf loads another one:
SWF 1
var TheContent:Loader = new Loader();
TheContent.load(new URLRequest("http://MyWebsite.com/swf2.swf"));
/// In this SWF 1 above I NEED TO KNOW WHAT CODE can see if other content is loaded and control it when loaded. But its tricky because I am loading external content from an externally loaded swf.
Here is the code in SWF 2
var TheMenu:Loader = new Loader();
TheMenu.load(new URLRequest("http://MyWebsite.com/MenuBar.png")); // you were missing a "
In the first SWF 1 I want to know if the MenuBar.png has loaded and how to control it. So for example in SWF 1 I might put code like this...
if(TheContent.MenuBar) /// IS LOADED? THEN...
{
MenuBar.alpha = .3;
MenuBar.x = 33;
etc...
}