如何在没有 FlexBuilder 的情况下将 Cairngorm 的 SWC 文件添加到我的应用程序中?

发布于 2024-09-14 04:03:09 字数 315 浏览 6 评论 0原文

我没有使用 FlexBuilder,而是使用免费的 Flex SDK 和 TextMate。我无法弄清楚 这个 FlexBuilder 进程 在所有这些背后实际上做了什么不错的对话框和东西,这样我就可以通过调整相关文件来完成同样的事情,但谷歌搜索只是向我指出类似的说明,告诉我使用 FlexBuilder。

有人能指出我正确的方向吗?

I am not using FlexBuilder, I'm using the free Flex SDK with TextMate. I'm having some trouble figuring out what this FlexBuilder process actually does behind all the nice dialogs and things, so that I can do the same thing by tweaking whatever the relevant file is, but Googling just points me at similar instructions telling me to use FlexBuilder.

Anyone able to point me in the right direction?

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

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

发布评论

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

评论(1

ㄖ落Θ余辉 2024-09-21 04:03:09

mxmlcswc 视为一个库(它实际上是一个您可以检查的 zip 文件),因此您需要执行如下操作:

mxmlc -compiler.library-path /path/to/your/swc

您可以获取有关 的帮助>mxmlc -help <术语>。例如:

$ mxmlc -help library-path
Adobe Flex Compiler (mxmlc)
Version 3.3.0 build 4852
Copyright (c) 2004-2007 Adobe Systems, Inc. All rights reserved.

-compiler.external-library-path [path-element] [...]
    alias -external-library-path
    list of SWC files or directories to compile against but to omit from
    linking (repeatable)
-compiler.library-path [path-element] [...]
    alias -l
    list of SWC files or directories that contain SWC files (repeatable)
-runtime-shared-library-path [path-element] [rsl-url] [policy-file-url] [rsl-url] [policy-file-url]
    alias -rslp
     (repeatable)

mxmlc considers a swc a library (it's actually a zip file that you can examine) so you'll want to do something like the following:

mxmlc -compiler.library-path /path/to/your/swc

You can get help with mxmlc -help <TERM>. For example:

$ mxmlc -help library-path
Adobe Flex Compiler (mxmlc)
Version 3.3.0 build 4852
Copyright (c) 2004-2007 Adobe Systems, Inc. All rights reserved.

-compiler.external-library-path [path-element] [...]
    alias -external-library-path
    list of SWC files or directories to compile against but to omit from
    linking (repeatable)
-compiler.library-path [path-element] [...]
    alias -l
    list of SWC files or directories that contain SWC files (repeatable)
-runtime-shared-library-path [path-element] [rsl-url] [policy-file-url] [rsl-url] [policy-file-url]
    alias -rslp
     (repeatable)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文