使用事件确定 Adobe Flex 中的视频何时结束
我是 Flex、Flash 和 ActionScript 的新手。我正在尝试创建一个视频播放器,在上一个视频结束时开始另一个视频。我认为视频播放完毕后可能会引发一个事件,但我一直找不到它。
VideoEvent.COMPLETE 是视频完全下载时,而不是完全播放时。这样的事件存在吗?如果没有,知道如何子类化 SWFLoader
、Image
或 Video
来支持此类事件吗?
谢谢。
I'm new to Flex, Flash, and ActionScript. I'm attempting to create a video player that starts another video when the previous video ends. I thought there might be an event that is thrown when the video finishes playing, but I have not been able to find it.
VideoEvent.COMPLETE is when the video is completely downloaded, not when it is completely done playing. Does such an event exist? If not, any idea how I could subclass SWFLoader
, Image
, or Video
to support such an event?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
关键是使用
VideoDisplay
(它适用于Canvas
)。The key is to use
VideoDisplay
(which works aCanvas
).