是否可以将我们的模板捆绑到一个 SWC 中?

发布于 2024-10-19 07:50:08 字数 247 浏览 7 评论 0原文

我正在 FlashDevelop/Flash 中构建一个应用程序模板,用作我们未来所有项目的模板。在没有 swc 的世界中,模板在 /lib/ 文件夹中有一堆库符号和一整套类,用于运行整个东西。

我想做的是将所有这些打包到一个单独的 SWC 中,这样团队就可以在项目开始时从 svn 检出 SWC 的最新版本,将其放入 /lib/ 文件夹中,然后就不用管它了。

然而,到目前为止,所有这样做的尝试都失败了。是否有可能将所有内容放入一个 SWC 中?

I am building an application template in FlashDevelop/Flash, to be used as the template for all our future projects. In a swc-free world, the template has a bunch of library symbols and a whole package of classes in the /lib/ folder that run the whole thing.

What I would like to do, is package all that up into a single swc, so the team can checkout the latest build of the swc from svn at the start of a project, put it in the /lib/ folder and forget about it.

However, all attempts to do this have failed so far. Is it even possible to put everything into one swc?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

总以为 2024-10-26 07:50:08

mxmlc -include-libraries C:\libs\as3corelib.swc C:\libs\as3swf.swc -output C:\output\oneSwcToRuleThemAll.swc -load-config "C:\sdk\frameworks\air-config. xml" -- C:\input\EmptyFile.as

EmptyFile.as :

package{
    public class EmptyFile
    {
    }
}

我不确定 -load-config "C:\sdk\frameworks\air-config.xml" 但我的项目中需要它。

此示例将“as3corelib.swc”和“as3swf.swc”包含到一个名为 oneSwcToRuleThemAll.swc 的 SWC 中

mxmlc -include-libraries C:\libs\as3corelib.swc C:\libs\as3swf.swc -output C:\output\oneSwcToRuleThemAll.swc -load-config "C:\sdk\frameworks\air-config.xml" -- C:\input\EmptyFile.as

EmptyFile.as :

package{
    public class EmptyFile
    {
    }
}

I'm not sure for -load-config "C:\sdk\frameworks\air-config.xml" but I need it in my projects.

This exemple include "as3corelib.swc" and "as3swf.swc" into one swc named oneSwcToRuleThemAll.swc

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文