I have a rather straight forward question.
I am creating a module like this:
private var modInfo:IModuleInfo
private var myModule:MyCustomMdoule;
//In creation complete of application
modInfo = ModuleManager.getModule('myMod.swf');
modInfo.addEventListener(ModuleEvent.READY, onModuleReady);
modInfo.load();
//In tho onModuleReady command
myModule = modInfo.factory.create() as MyCustomModule;
moduleContent.addChild( myModule );
myModule.addEventListener( 'customEventDispatchedByModule', onEvent );
//Inside my module there is
dispatchEvent( new Event('customEventDispatchedByModule',true) );
Even though the code for the dispatch event is running the handler never
runs... am I doing something wrong?? or do module not dispatch events??