需要命名属性

发布于 2024-10-11 04:10:52 字数 298 浏览 1 评论 0原文

将项目从 Windows 迁移到 Mac 后,每次我尝试在 Flash 生成器中嵌入资源时,如下所示:

[Bindable] [Embed("assets/assets.swf#mySymbol")]
 public var myClass:Class;

我收到此错误:

[Embed] requires named attributes

如果我关闭包含嵌入的文件,它会正常编译并且不会出现任何问题。 我用谷歌搜索了该错误,但没有找到类似的内容。

After I migrated my project from Windows to Mac, every time I try to embed an asset in Flash builder like this:

[Bindable] [Embed("assets/assets.swf#mySymbol")]
 public var myClass:Class;

I get this error:

[Embed] requires named attributes

if I close the files containing the embedding, it compiles fine and doesn't give any problem.
I googled the error, and haven't found anything similar.

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

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

发布评论

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

评论(1

一梦浮鱼 2024-10-18 04:10:52

如果我没记错的话:

[Embed(source="assets/assets.swf", symbol="mySymbol")]

这些是 FB 告诉你的命名属性 - 源和符号。

更新:正如 Jason Towne 提到的,唯一必需的属性是源。符号允许将 swf 中的特定符号绑定到变量。

If I remember correctly:

[Embed(source="assets/assets.swf", symbol="mySymbol")]

These are named attributes FB is telling you about - source and symbol.

Update: as Jason Towne mentioned, the only required attribute is source. Symbol allows to bind specific symbol from swf to variable.

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