有一个flex项目,如何使用mxmlc编译它(不使用flashBuilder gui)?

问题描述 投票:0回答:1

所以我有一个usual flex项目文件夹,其中包含

.actionScriptProperties
.flexProperties
.project
文件和
src
libs
html-template
目录。我的所有库都在 libs 文件夹中,我的项目通常与主题无关(我使用服装)。一般来说,它是简单的实时 TCP 流视频播放器 - 只有默认的 mx 组件。我想要某种 bat/sh 脚本文件,用于在实现模式下从命令终端/cmd 将我的项目编译到特定目录中。怎么办这样的事?

有类似的东西吗

mxmlc compileDefaultApplication fromProject=pathToProject toRealiseDir=pathToRealiseDir

flash apache-flex command-line project mxmlc
1个回答
5
投票

http://livedocs.adobe.com/flex/3/html/help.html?content=compilers_13.html

http://livedocs.adobe.com/flex/3/html/help.html?content=compilers_09.html#138195

mxmlc MyApp.mxml load-config my-app-config.xml output /pathToRelease

为了获取 Flex/Flash 构建器中的配置,您可以转到项目属性并将其添加到编译器参数中:

 -dump-config C:\Users\shusain\Desktop\slotConfig.xml

有适当的路径

© www.soinside.com 2019 - 2024. All rights reserved.