简体   繁体   English

是否有用于Flash 8的全屏FLV播放器?

[英]Is there a FLV player with fullscreen for Flash 8?

I need a player that can play FLV videos in FULLSCREEN inside my Flash8 application. 我需要一个可以在Flash8应用程序内的FULLSCREEN中播放FLV视频的播放器。 I know that it can be done using AS3, but I need to use AS2; 我知道可以使用AS3完成此操作,但是我需要使用AS2; is there a player that supports fullscreen that can be used? 是否有支持全屏播放器的播放器?

First page of a Google search has this: http://www.oxylusflash.com/flashfiles/video-player-with-playlist-02-as2-xml . Google搜索的首页上有以下内容: http : //www.oxylusflash.com/flashfiles/video-player-with-playlist-02-as2-xml It's not free, but it shows that they do exist. 它不是免费的,但它表明它们确实存在。

Alternatively you could roll your own fairly easily. 另外,您可以相当轻松地推出自己的产品。 Full screen mode works pretty much the same in AS2. 全屏模式在AS2中的工作原理几乎相同。 The following toggles the display mode, and could easily be used on a full screen button: 以下内容可切换显示模式,可以轻松地在全屏按钮上使用:

Stage.displayState = (Stage.displayState == "normal") ? "fullScreen" : "normal";

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM