FLEX 视频播放器 - 播放次数

发布于 2024-09-15 22:48:52 字数 92 浏览 3 评论 0原文

我有一个 Flex 视频播放器,可以不断播放电影。有没有办法查看播放了多少次?

因此,每次播放电影时,填充的文本都会填充 +1。

谢谢,严

I have a video player in flex which constantly plays a movie. Is there a way to see how many times it has played?

So each time the movie is played, text filled populates with +1.

Thanks, Yan

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

最偏执的依靠 2024-09-22 22:48:52

您可以为 VideoPlayer 的完整事件设置一个变量和一个事件处理程序,并在每次完整事件触发时让变量递增。
...

var playCount:int = 0;

protected function onPlayerComplete(event:TimeEvent):void
{
    playCount++;
}

You can set up a variable and an event handler for the complete event of the VideoPlayer and have the variable increment each time the complete event fires.
...

var playCount:int = 0;

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