Knowledge Base |
Flv Video Player Pro V1
(views: 4500)
Especially designed to play your flv files in streaming, Flash FLV Video Player Pro V1 can be easy included in your projects. With three included flash implementations, our flv player will give elegance and taste to your video flash projects. Flash FLV Video Player Pro component is a lightweight streaming video player, with an optional scrolling playlist and playback controls that you can access and edit right from your flash IDE. It has the ability to scale or resize the movies.
Audio plays but video not
(2008-02-08 - views: 1655)
Q: What can I do if the player does not display the video but it still plays the sound from the .flv file ?
A: This usually happens when the .flv files are not encoded properly so the events of the Video object are not dispatched correctly. In this case, the solution would be to set the video holder clip to be visible when the clip starts playing (because it is invisible when it's initialized):
var myListenerObj:Object = new Object();
myListenerObj.onStartPlay = function(evt:Object):Void {
myVideoPlayer.videoHolder._visible = true;
}
myVideoPlayer.addEventListener("onStartPlay", myListenerObj);
NOTE: This solution may not always work for reasons not related to the video player component.
var myListenerObj:Object = new Object();
myListenerObj.onStartPlay = function(evt:Object):Void {
myVideoPlayer.videoHolder._visible = true;
}
myVideoPlayer.addEventListener("onStartPlay", myListenerObj);
NOTE: This solution may not always work for reasons not related to the video player component.
User Comments
How can I make FullScreen ?
posted by winthan on 2008-04-01
i would like to make full screen based on Skin2. how can I make full screen for movies to be play.
No full screen
posted by negush on 2008-04-02
This version of the video player component cannot be made full screen.
Login to post your comment



