yishayw opened a new issue #826: URL: https://github.com/apache/royale-asjs/issues/826
The main app: ``` <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="library://ns.apache.org/royale/mx" xmlns:fx="http://ns.adobe.com/mxml/2009" applicationComplete="init()"> <fx:Script> <![CDATA[ private function init():void { ml.url = "Test1.swf"; } ]]> </fx:Script> <mx:VBox width="600" height="600"> <mx:ModuleLoader id="ml"/> </mx:VBox> </mx:Application> ``` Test1.mxml : ``` <?xml version="1.0" encoding="utf-8"?> <mx:Module xmlns:mx="library://ns.apache.org/royale/mx" xmlns:fx="http://ns.adobe.com/mxml/2009" width="500" height="500"> <fx:Script> <![CDATA[ import mx.controls.Alert; // delete this line to see module in IE ]]></fx:Script> <mx:Label text="hello from module"/> </mx:Module> ``` Removing the import means module is loaded, leaving it means it hangs. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
