Flex 4 ant target html-wrapper 使用用户自己的html-template

最近在做Flex3到Flex4升级,在对ant脚本升级的时候,发现Flex 4的SDK 4.1.0 ant 的html-wrapper居然不支持让用户自己选自使用自己的template了,不知道是出于什么考虑,真是个遗憾啊。还好有源代码在,于是就修改了原来html-wrapper标签。用法也挺简单的:

<html-wrapper
            width="100%" height="100%" title="XXX" file="index.html"
            application="XXX" swf="XXX" version-major="10"
            templatePath="${template.dir}" version-minor="0"
            version-revision="1" history="false" express-install="true"
            version-detection="true" output="${out.dir}"/>
其中
templatePath 为用户自己的html-template路径

flexTask.jar 在附件当中。

你可能感兴趣的:(html,ant,Flex,脚本)