无法将<fx:declarations>(或<fx:script>)解析为组件实现</fx:script> </fx:declarations>

时间:2011-05-13 17:24:10

标签: flex compilation mxmlc

我正在尝试使用命令行中的mxmlc将文件编译为swf。当它是一个非常简单的mxml时,编译成功。但是当文件包含fx名称空间时,我得到一个编译错误,如:无法解析(或)到组件实现。

我必须能够在没有Flash Builder帮助的情况下执行此操作,因为我正在开发一个项目,我需要从mxml文件生成swf文件,我们生成代码。

有什么建议吗?

我想编译的代码是:

<?xml version="1.0" encoding="utf-8"?>
<s:Application 
xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx" 
minWidth="800" minHeight="600" width="800" height="600"
currentState="s1"
backgroundColor.s1="16777215" backgroundColor.s2="16777215" backgroundColor.s3="16777215" 
creationComplete="application1_creationCompleteHandler(event)">
<fx:Script>
<![CDATA[
import mx.events.FlexEvent;
protected function btnNext_clickHandler(event:MouseEvent):void{currentState= states[++stateIndex].name;}
protected function btnPrev_clickHandler(event:MouseEvent):void{currentState= states[--stateIndex].name;}
protected function application1_creationCompleteHandler(event:FlexEvent):void{stateIndex=0;}
    ]]>
</fx:Script>
<s:states>
<s:State name="s1"/>
<s:State name="s2"/>
<s:State name="s3"/>
</s:states>
<fx:Declarations>
<fx:int id="stateIndex"/>
</fx:Declarations>
<s:controlBarContent>
<s:Label text="e-cognitio" id="lblEcognitio" fontSize="10" color="#3C3C3C" fontWeight="bold" fontStyle="italic" paddingTop="4"/>
<s:Button label="&lt;" height="14" width="27" id="btnPrev" enabled="true" fontSize="10" fontWeight="bold" cornerRadius="5" click="btnPrev_clickHandler(event)" enabled.s1="false"/>
<s:Button label="&gt;" id="btnNext" enabled="true" fontSize="10" fontWeight="bold" width="27" height="14" cornerRadius="5" click="btnNext_clickHandler(event)" enabled.s3="false"/>
<s:Label text="blah" id="lblLessonName" fontFamily="Georgia" fontSize="10" paddingTop="3" width="615" textAlign="center"/>
<s:Button label="X" id="btnExit" fontSize="10" chromeColor="#A11C1C" color="#FFFFFF" fontWeight="bold" width="28" height="14"/>
</s:controlBarContent>
<s:Label id= "tmpLbl" text= "A" backgroundColor= "16777215" color= "0" fontSize= "144" x= "144" y= "52" width= "111" height= "135" fontFamily= "Arial" fontWeight= "normal" fontStyle= "normal" textDecoration= "none" includeIn= "s1"/>
<s:RichEditableText id= "tmpRch" x= "192" y= "216" width= "317" height= "171" editable="false" text= "erjhjhfglkjedbfgkljehfkgjnedfkgjheg
google"
includeIn= "s1">
<s:TextFlow  xmlns="http://ns.adobe.com/textLayout/2008">
  <s:p color="#000000" fontFamily="Arial" fontSize="12" kerning="auto" leadingModel="approximateTextField" lineHeight="2" textAlign="left" trackingRight="0">
    <s:span>erjhjhfglkjedbfgkljehfkgjnedfkgjheg</s:span>
  </s:p>
  <s:p color="#000000" fontFamily="Arial" fontSize="12" kerning="auto" leadingModel="approximateTextField" lineHeight="2" textAlign="left" trackingRight="0">
    <s:a href="http://www.google.com" target="_blank">
      <s:span>google</s:span>
    </s:a>
  </s:p>
</s:TextFlow>
</s:RichEditableText>
<mx:Image id= "tmpImg" x= "122.2" y= "143.35" width= "468" height= "175.6" source= "http://www.google.com.tr/logos/classicplus.png" 
includeIn= "s2"/>
</s:Application>

2 个答案:

答案 0 :(得分:4)

最后,我找到了解决方案。

首先,据我所知,问题是针对某些区域设置的。问题定义为here

似乎这个问题在土耳其语言环境中很常见(在操作系统是土耳其语的计算机中)

以下是我解决此问题的方法:强制mxmlc使用的java虚拟机使用英语语言环境。我找到了我的SDK使用的jvm.config JVM并添加了行-Duser.language=en -Duser.location=us。现在它有效!

我希望这个解决方案适用于遇到同样问题的每个人。

此致

答案 1 :(得分:1)

尝试执行以下操作:

mxmlc -version

以与从命令行编译相同的方式调用mxmlc。输出中的版本号是多少?它至少应该是4.0。