Spark VideoDisplay - 告知视频当前是否正在播放

发布于 2024-10-14 14:12:55 字数 224 浏览 1 评论 0原文

我正在编写一个带有“慢速前进”按钮的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

逆流 2024-10-21 14:12:55

该属性(布尔值)不是“isPlaying”,而只是“playing”:)
FT任务

The property (Boolean) is not "isPlaying" but simply "playing" :)
FTQuest

油焖大侠 2024-10-21 14:12:55

像这样的事情怎么样:

if (video.currentCSSState == 'playing'){
 // is playing
} else {
 // is not playing
}

由于 currentCSSState 是受保护的方法,因此您必须扩展视频组件并公开它或广告您自己的“isPlaying”属性/方法。

How about something like this:

if (video.currentCSSState == 'playing'){
 // is playing
} else {
 // is not playing
}

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文