是否可以在 Flex 项目的动作脚本中检索 swf 元数据?

发布于 2024-08-04 22:27:31 字数 258 浏览 2 评论 0原文

我知道可以将 swf 元数据作为命令选项添加到编译命令中,但我找不到任何有关如何在运行时在操作脚本中访问这些元数据的文档。我们尝试在编译时向 swf 添加版本号,然后在运行时在应用程序的某个位置检索它,下面是添加描述元数据的命令示例。

mxmlc -description "version 1.2.3"

我知道搜索引擎和其他实用程序使用 swf 元数据来收集有关 SWF 文件的信息,但您肯定应该能够在运行时在操作脚本中检索它们吗?

I know that it is possible to add swf metadata to the compile command as a command option, but I can't find any documentation on how to access these metadata within the actionscript during runtime. We're trying to add a version number to the swf during compile time and then somewhere in our app we would retrieve it during runtime, here is the command example to add the description metadata.

mxmlc -description "version 1.2.3"

I know the swf metadata is used by search engines and other utilities to gather information about the SWF file, but surely you should be able to retrieve them in the actionscript during runtime?

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

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

发布评论

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

评论(1

拥醉 2024-08-11 22:27:31

您是否尝试过像这样命名它: http://hasseg.org/blog/?p=165

所以也许 "-define+=VERSION::description,"version 1.2.3"

然后使用示例代码访问它:

var VERSION:Namespace = new Namespace("VERSION");
var ver:String = VERSION::description;

编辑:嗯。在 Flex Builder 中对我不起作用,但我发现了这个: < a href="http://livedocs.adobe.com/flex/3/html/help.html?content=compilers_21.html" rel="nofollow noreferrer">http://livedocs.adobe.com/flex/3 /html/help.html?content=compilers_21.html,这似乎证实了这个想法。

Have you tried to namespace it like this: http://hasseg.org/blog/?p=165

So maybe "-define+=VERSION::description,"version 1.2.3"

And then access it using the example code:

var VERSION:Namespace = new Namespace("VERSION");
var ver:String = VERSION::description;

EDIT: Hmm. Doesn't work for me in Flex Builder, but I found this: http://livedocs.adobe.com/flex/3/html/help.html?content=compilers_21.html, which seems to confirm the idea.

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