在 as3 中从时间轴更改 flvplayer 的路径?

发布于 2024-09-17 22:56:21 字数 120 浏览 8 评论 0原文

我可以使用 flvplauer 组件播放视频,但我在确定是否以及如何在运行时间线时动态更改 flvplayer 的路径时遇到了一些麻烦。

如果我可以做像 mc.changeFLVPath 这样的事情那就太棒了。

I can get the videos to play using the flvplauer component, but I'm having a little trouble figuring out if and how to dynamically change the path of the flvplayer while running through a timeline.

If I can do something like mc.changeFLVPath that would be awesome.

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

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

发布评论

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

评论(1

听你说爱我 2024-09-24 22:56:21

根据您调用该函数的位置,您应该能够执行以下操作

function playFLV(url:String):void
{ 
    playerInstanceName.source = url;
    //or mc.playerInstanceName.source = url;
}

Depending on where you call the function from, you should be able to do the following

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