So after installing the most recent hotfix I am getting a new error
when trying to load a module. Maybe its me, but it was working before
the hotfix.

VerifyError: Error #1053: Illegal override of subtopic in
mx.messaging.Consumer.
        at flash.display::MovieClip/nextFrame()
        at
mx.core::FlexModuleFactory/mx.core:FlexModuleFactory::deferredNextFrame()[C:\dev\flex_201_gmc\sdk\frameworks\mx\core\FlexModuleFactory.as:365]
        at
mx.core::FlexModuleFactory/mx.core:FlexModuleFactory::update()[C:\dev\flex_201_gmc\sdk\frameworks\mx\core\FlexModuleFactory.as:262]
at
mx.core::FlexModuleFactory/mx.core:FlexModuleFactory::moduleCompleteHandler()[C:\dev\flex_201_gmc\sdk\frameworks\mx\core\FlexModuleFactory.as:454]


Here is the code that is throwing the error:

private function makeLivePreview() : void
{

var module : IModuleInfo =
ModuleManager.getModule('ImageWidget_2_3-debug.swf');
module.addEventListener(ModuleEvent.READY,modError);
module.addEventListener(ModuleEvent.ERROR,modReady);
module.addEventListener('ReallyReady',modReallyReady);
module.load();
                        
function modError(e : ModuleEvent) : void
{
trace('MOD ERROR');
}
function modReady(e : ModuleEvent) : void
{
trace('MOD READY');
}
function modReallyReady(e : Event) : void
{
trace('MOD REALLY READY');
}

}

- Kyle

Reply via email to