如何使用 SWF 对象暂停和快退 swf flash
我使用 http://code.google.com/p/swfobject/ SWF 对象来播放swf 文件。我能够嵌入和播放,但我没有得到任何 api java 脚本来暂停、快退 API,有人这样做过吗?
i used http://code.google.com/p/swfobject/ SWF object to play the swf file. I am able to embed and play but i am not getting any api java script to pause,rewind forward API for that any one done this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SWFObject 只是一个用于在网页中嵌入 Flash 内容的工具。如果您想使用 JavaScript 控制 SWF 的流程,则必须使用 外部接口。
这将要求您在 Flash 中编写所需的功能,然后使用ExternalInterface 公开这些函数,以便您可以使用 JavaScript 从页面调用它们。
SWFObject is just a tool for embedding Flash content in a webpage. If you want to control the flow of your SWF with JavaScript you will have to communicate with it using ExternalInterface.
This will require you to to code the functionality you require in Flash, and then expose those functions using ExternalInterface so that you can call them from your page using JavaScript.