You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@royale.apache.org by GitBox <gi...@apache.org> on 2020/05/10 15:29:32 UTC

[GitHub] [royale-asjs] yishayw opened a new issue #826: mx:Alert Prevents Module From Loading in IE

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:
users@infra.apache.org



[GitHub] [royale-asjs] yishayw closed issue #826: mx:Alert Prevents Module From Loading in IE

Posted by GitBox <gi...@apache.org>.
yishayw closed issue #826:
URL: https://github.com/apache/royale-asjs/issues/826


   


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [royale-asjs] yishayw commented on issue #826: mx:Alert Prevents Module From Loading in IE

Posted by GitBox <gi...@apache.org>.
yishayw commented on issue #826:
URL: https://github.com/apache/royale-asjs/issues/826#issuecomment-629298309


   Fixed with 14322f1


----------------------------------------------------------------
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:
users@infra.apache.org