通过 ObjectID 附加 swf 元素
我有 swf 文件,其中包含一些图形,我需要在我的 haxe(将来也编译为 swf)程序中使用。 swfmill嵌入图片没有问题,所以我尝试用swfmill反汇编swf,发现一些像DefineSprite和DefineShape这样有objectID的条目。
是否可以使用 swf 文件作为库从 haxe 附加这些元素?
I have swf file with some graphics I need to use in my haxe(future compiled to swf too) program. There is no problem with embedding pictures by swfmill, so i tried to disassemble the swf with swfmill and found some entries like DefineSprite and DefineShape which have objectID's.
Is it possible to attach these elements from haxe using the swf file as a library?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以附加一个元素(图片、声音等),如果它们具有:
,你必须支持
-swf-lib mylib.swf
switch,只接受一个swf作为参数。如果您想使用多个库,可以使用 swfmill 或 SamHaxe 将它们组装成一个库,并支持组装的库。
然后,您可以从 Haxe 使用
希望这会有所帮助。
You can attach an element (picture, sound, etc) if they have:
For haxe, you have to support the
-swf-lib mylib.swf
switch, which takes only one swf as parameter. If you would like to use multiple libs, you can assemble them into one with either swfmill or SamHaxe, and suppprt the assembled lib.
From Haxe, you can then use
Hope this helps.