Spark VideoDisplay - 告知视频当前是否正在播放
我正在编写一个带有“慢速前进”按钮的 Flex 视频播放器,我的第一个方法是简单地在计时器上的 play() 和pause() 之间切换。我想说类似的内容
if (video.isPlaying) {
video.pause();
} else {
video.play();
}
,但我找不到类似“isPlaying”属性的内容。我是不是找错了树?
I'm writing a Flex video player with a "slow advance" button, and my first approach is to simply toggle between play() and pause() on a timer. I'd like to say something like
if (video.isPlaying) {
video.pause();
} else {
video.play();
}
But I can't find anything like an 'isPlaying' property. Am I barking up the wrong tree?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
该属性(布尔值)不是“isPlaying”,而只是“playing”:)
FT任务
The property (Boolean) is not "isPlaying" but simply "playing" :)
FTQuest
像这样的事情怎么样:
由于 currentCSSState 是受保护的方法,因此您必须扩展视频组件并公开它或广告您自己的“isPlaying”属性/方法。
How about something like this:
Since currentCSSState is a protected method you'll have to extend the video component and either expose it or ad your own "isPlaying" property/method.