需要命名属性
将项目从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我没记错的话:
这些是 FB 告诉你的命名属性 - 源和符号。
更新:正如 Jason Towne 提到的,唯一必需的属性是源。符号允许将 swf 中的特定符号绑定到变量。
If I remember correctly:
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.