Flex 3, cannot convert SystemManager to SystemManager when loading from server? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T06:51:27Z http://stackoverflow.com/feeds/question/998124 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/998124/flex-3-cannot-convert-systemmanager-to-systemmanager-when-loading-from-server 0 Flex 3, cannot convert SystemManager to SystemManager when loading from server? Max 2009-06-15T20:09:01Z 2009-06-15T20:09:01Z <p>I am working on an AIR application that needs to load, run, and access methods on a swf pulled in from the net. Using moduals has worked well in the past but due to design constraints is not possible for this application. Below you can see the code where I load the ImageTest.swf then call function Bleh() on it. </p> <pre><code>private var l:Loader = new Loader(); private var ctx:LoaderContext; private function onInit():void { l.contentLoaderInfo.addEventListener(Event.COMPLETE,onLoadComplete); l.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR,onLoadError); l.load(new URLRequest("ImageTest.swf")); } private function onLoadError(event:IOErrorEvent):void { } private function onLoadComplete(event:Event):void { ui.addChild(event.target.content); SystemManager(event.target.content).addEventListener(FlexEvent.APPLICATION_COMPLETE, swfAppComplete); } private function swfAppComplete(event:FlexEvent):void { var sys:SystemManager = SystemManager(event.currentTarget); var app:Object = sys.application; app.Bleh(); } </code></pre> <p>This works fine when the swf is local to the AIR application, but when ImageTest.swf is off on a server, it loads fine but I get a coercion run time error(TypeError: Error #1034: Type Coercion failed: cannot convert _Engine_mx_managers_SystemManager@7c36281 to mx.managers.SystemManager) at the line:</p> <pre><code>SystemManager(event.target.content).addEventListener(FlexEvent.APPLICATION_COMPLETE, swfAppComplete); </code></pre> <p>I believe the error might be relating to a security sandbox issue, but I am not sure. Thanks in advance!</p>