I have a module that combines mxml and as3. The problem I describe below happens in either case: * main module file in AS extending ModuleBase * main module file in MXML extending mx:Module
When I load the module using ModuleLoader and its 'child' property, all is good. When I use ModuleManager and I instantiate a module object through IModuleInfo.factory.create(), the objects defined as MXML tags within my module are not instantiated (properties remain null). Is there something I can do to properly instantiate the module (something that apparently ModuleLoader does behind the scene)? Or should I just not use any MXML with modules?