javeiga-iest opened a new issue #1083:
URL: https://github.com/apache/royale-asjs/issues/1083


   Since this morning, I cannot compile my Apache Royale projects, the error is 
located when trying to use the Array class from the adobe fx package ...
   
   ```
   <?xml version="1.0" encoding="utf-8"?>
   <crux:BeanProvider xmlns:fx="http://ns.adobe.com/mxml/2009";
                                xmlns:crux="library://ns.apache.org/royale/crux"
                                xmlns:mx="library://ns.apache.org/royale/mx"
                                xmlns:a="library://ns.test.com/test">
   
        <fx:Script>
                <![CDATA[
                import com.test.beads.services.DynamicChannelSet;
   
                import mx.messaging.config.LoaderConfig;
   
                override public function initialize():void{
                        super.initialize(); 
                }
                
                override public function generateMXMLAttributes(data:Array):void
                {
                        LoaderConfig.init(null);
                        super.generateMXMLAttributes(data);
                }
                ]]>
        </fx:Script>
   
        <mx:RemoteObject id="WPWebService" destination="fluorine" 
channelSet="{loginChannel}" />
   
        <crux:Bean id="dynamicChannels">
                <crux:source>
                        <fx:Array>
                                <a:DynamicChannelSet id="loginChannel" />
                        </fx:Array>
                </crux:source>
        </crux:Bean>
   
   </crux:BeanProvider>
   ```
   
   Console log:
   
   ```
   This tag could not be resolved to an ActionScript class. It will be ignored.
   
                           <fx:Array>
                           ^
   
   ```
   


----------------------------------------------------------------
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]


Reply via email to