I’ve been working with loaded swfs whose application domain is a child of the loader’s current domain.
var appDom:ApplicationDomain = new ApplicationDomain(ApplicationDomain.currentDomain);
I’ve read all through that article and any other information I could find on the application domain, and while I have been able to access the child domain’s classes, I have not been able to access the overridden classes.
myLoader.contentLoaderInfo.applicationDomain.getDefinition("MyClassName");
The above code does get the child classes, but for overridden classes it gets the parent domain’s classes.
So how can I get access to those overridden child classes? Or is the article and Adobe documentation mistaken and the overridden child classes are not retained?
Thanks in advance.