Ant任务compc用于空气错误

时间:2011-05-26 14:31:02

标签: flex actionscript-3 ant air

我正在尝试从我编写的源代码编译SWC,但由于某种原因我收到了这个错误:

[compc] Error: 'flash.events:StageOrientationEvent' is undefined.
[compc]
[compc] Error: 'flash.data:EncryptedLocalStore' is undefined.
[compc]
[compc] Error: 'flash.desktop:NativeDragActions' is undefined.
[compc]
[compc] Error: 'flash.desktop:NativeDragOptions' is undefined.
[compc]
[compc] Error: 'flash.events:NativeDragEvent' is undefined.

并无法弄清楚如何修复它。

有什么想法吗?

更新

t compc代码:

<compc debug="true" target-player="10.2" optimize="true" strict="true" as3="true" compute-digest="false" output="${outputFull}">
    <include-sources dir="./" includes="**/*.as" />
<compiler.library-path dir="${FLEX_HOME}/frameworks/libs" append="true">
        <include name="*"/>
</compiler.library-path>
</compc>

1 个答案:

答案 0 :(得分:7)

好吧,经过一些google-fu之后,我发现compc 不适用于空气组件库!

得到这个,你需要使用acompc!是的!看看这个:http://livedocs.adobe.com/flex/3/html/help.html?content=CommandLineTools_3.html

我也从来没有听说过,谷歌acompc并没有给你太多帮助。

我找不到任何关于ANT任务的文档,但是我发现这篇博文描述了如何使用“exec-task”来完成,build.xml在这篇博文的评论中:{{3 }}

<强>更新 我正在重新阅读那篇博文,并在底部注意到这段代码发布在最后一条评论中:

<compc output="${dir.build}/${ant.project.name}.swc" target-player="10.0.0">
    <load-config filename="${FLEX_HOME}/frameworks/air-config.xml" />
</compc>

显然,compc只需要一个不同的config.xml即可正常运行。