I am trying to compile a simple mxml file to js using mxmlc. Here is the mxml
fie.


<uipanel:ListingViewTemplate xmlns:mx="library://ns.apache.org/royale/mx"
                             xmlns:fx="http://ns.adobe.com/mxml/2009";
                            
xmlns:ss="com.infogix.iitap.component.scheduler.view.*"
                            
xmlns:uipanel="com.infogix.iitap.component.flexuiplatform.controls.panel.*"
                            
xmlns:uicore="com.infogix.iitap.component.flexuiplatform.core.*"
                            
xmlns:uiactions="com.infogix.iitap.component.flexuiplatform.core.action.*"
                            
xmlns:sactions="com.infogix.iitap.component.scheduler.action.*"
                             title="scheduler"
                             recordCount="2"
                             helpUrl="ContextHelp/manage_scheduler_c.htm"
        >
    
    <uipanel:topToolbarRegion>
        <ss:SchedulerListViewToolBar id="schedulerListViewToolbar"/>
    </uipanel:topToolbarRegion>

    <uipanel:filterRegion>
        <ss:SchedulerFilterBar id="schedulerFilterBar"/>
    </uipanel:filterRegion>
    
    <uipanel:topRegion>
        <ss:SchedulerList id="schedulerlist" />
    </uipanel:topRegion>

    <uicore:ComponentExt id="i_compExt" component="{this}" type="VIEW">
        <uicore:actions>
            <mx:ArrayList>
                <uiactions:FilterAction component="{this}"/>
                <uiactions:ContextHelpAction component="{this}"/>
                <sactions:ScheduledJobEditAction component="{this}"/>
                <sactions:SchedulerToggleAction component="{this}"
                        isEnabled="true" />
            </mx:ArrayList>
        </uicore:actions>
    </uicore:ComponentExt>
 

</uipanel:ListingViewTemplate>

Here is the commnd that I am using to compile.

C:\devenv\GitHub\apache-royale-0.9.3\royale-asjs\js\bin\mxmlc
-load-config=C:\devenv\ivp\deflex\Components\IVPSolution\build/resources/flex/royale-config.xml
-compiler.locale=en_US
-compiler.source-path=C:\devenv\ivp\deflex\Components\Scheduler\src-flexui
-compiler.source-path=C:\devenv\ivp\deflex\Components\Scheduler/res-flexui/locale/{locale}
-compiler.js-library-path+=C:\devenv\ivp\deflex\solution-build\deflex\flexuiplatformroyale.swc
-compiler.js-library-path+=C:\devenv\ivp\deflex\solution-build\deflex\flexuiplatform-asset.swc
-compiler.js-library-path+=C:\devenv\ivp\deflex\solution-build\deflex\rulesmgmtroyale.swc
-compiler.js-library-path+=C:\devenv\ivp\deflex\solution-build\deflex\schedulerroyale.swc
-compiler.js-library-path+=C:\devenv\ivp\deflex\solution-build\deflex\baseroyale.swc
-output=C:\devenv\ivp\deflex\components\IVPSolution\build\flex\SchedulerListApp.swf
--
C:\devenv\ivp\deflex\Components\Scheduler\src-flexui\com\infogix\iitap\component\scheduler\view\SchedulerListView.mxml

The file containing compile output with the error message is attached. Can
you help me in understanding the error message and resolving it? The mxml
used to have the reference to the the Resource File ( in the compile error
). But I deleted the reference hoping that the compile would be success. But
no luck. The components used in the mxml file has been compiled to swc
library containing the js output and used in the compile command. Thank you
for your help. 

compileErr.compileErr
<http://apache-royale-development.20373.n8.nabble.com/file/t65/compileErr.compileErr>
  







--
Sent from: http://apache-royale-development.20373.n8.nabble.com/

Reply via email to