从动作脚本动画中保存动画 GIF
是否可以将动作脚本动画中的 .fla 文件另存为 gif 动画? 我知道您可以很容易地从补间动画中做到这一点,但一直无法找到一种从脚本动画中做到这一点的方法。
Is it possible to save a .fla file as an animated gif from an actionscripted animation? I know you can do it from a tweened animation quite easily, but haven't been able to figure out a way to do it from a scripted one.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不能百分百确定我理解你的问题。
如果您想从 Flash IDE 将动作脚本动画写入文件,您可以通过选择以下方式尝试 Quicktime(.mov):
文件> 导出影片并选择 QuickTime 作为输出格式。 这将允许您将动作脚本的渲染保存到文件中。 此处提供了 Lee Brimlow 制作的便捷视频。
我认为不可能从 IDE 中为 actionscript 保存 gif,但如果必须使用 GIF,您可以尝试使用 actionscript 渲染到 BitmapData 对象数组中,然后将其提供给 GIFEncoder。
看看这个有趣且易于使用的 Thibault Imbert 的 GIF 编码器。 我发现它非常容易上手。
玩得开心!
I am not 100% sure I understand your question.
If you want to write an actionscript animation to a file from the Flash IDE, you can try quicktime(.mov) by choosing:
File > Export Movie and choosing QuickTime as the output format. This will allow you save the rendering of your actionscript to a file. A handy video by Lee Brimlow is available here.
I don't think it's possible to save a gif from the IDE for actionscript, but if GIF is a must you can try rendering with actionscript into an array of BitmapData objects that you would feed to a GIFEncoder.
Have a look at this fun and easy to use GIF Encoder by Thibault Imbert. I found it really easy to get started with.
Have fun!
如果您仍然好奇,请查看将 SWF 转换为 GIF 文件
In case you're still curious, check Converting SWF into GIF file