private function currentMod(uri:String):void{
childMod.url = null;
childMod.url = uri;
childMod.addEventListener(ModuleEvent.ERROR,onLoadError);
}
when i load unload ..... and load unload on multiple module I found this Error
TypeError: Error #1034: Type Coercion failed: cannot convert mx.graphics::Stroke@4b336d1 to mx.graphics.IStroke.
at mx.charts::AxisRenderer/measure()[C:\Work\flex\dmv_automation\projects\datavisualisation\src\mx\charts\AxisRenderer.as:1091]
at mx.core::UIComponent/measureSizes()[E:\dev\3.0.x\frameworks\projects\framework\src\mx\core\UIComponent.as:5819]
at mx.core::UIComponent/validateSize()[E:\dev\3.0.x\frameworks\projects\framework\src\mx\core\UIComponent.as:5765]
at mx.managers::LayoutManager/validateSize()[E:\dev\3.0.x\frameworks\projects\framework\src\mx\managers\LayoutManager.as:559]
at mx.managers::LayoutManager/doPhasedInstantiation()[E:\dev\3.0.x\frameworks\projects\framework\src\mx\managers\LayoutManager.as:648]
at Function/http://adobe.com/AS3/2006/builtin::apply()
at mx.core::UIComponent/callLaterDispatcher2()[E:\dev\3.0.x\frameworks\projects\framework\src\mx\core\UIComponent.as:8460]
at mx.core::UIComponent/callLaterDispatcher()[E:\dev\3.0.x\frameworks\projects\framework\src\mx\core\UIComponent.as:8403]
with this code I'm found problem
<mx:ModuleLoader id="childMod"></mx:ModuleLoader>
after that , i try this code
<mx:ModuleLoader id="childMod" applicationDomain="{ApplicationDomain.currentDomain}" ></mx:ModuleLoader>
and i can fix that problem Hulaaaaaaaa ^^