There's more than customizable interface colors, transparencies, and rollover states. FLV Player also allows you to have complete control over how your interface is displayed. Put the interface outside of the video, on top of the video, turn rounded corners on and off. You can even turn on Autohide, which will hide the interface until your users actually need to use it. Here's a quick list of the available properties.
Rounded Corners - Give your player fresh web 2.0 look and feel.
Button Variations - Decide which buttons are included in your interface and which are not.
Controls Overlay - Set your interface inside or outside of the video content area.
Controls Autohide - Hide the interface until your users actually need to use it.
package {
import com.flvplayer.FlvPlayer;
import flash.display.MovieClip;
public class FlvPlayerApi extends MovieClip {
public var myVideo:FlvPlayer = new FlvPlayer();
public function FlvPlayerApi() {
//setup the video source
myVideo.vidURL="http://yourdomain.com/media_folder/your_video.mp4";
//video general settings
myVideo.width = 444;
myVideo.height = 249;
myVideo.x = 188;
myVideo.y = 1;
//video button display options
myVideo.showbStop = false;
myVideo.showbBack = false;
myVideo.showbForward = false;
myVideo.showbInfo = false;
myVideo.showbCc = false;
myVideo.showbFullscreen = false;
myVideo.showbMenu = false;
//video layout setup
myVideo.interfaceLayout = "outside";
//add the video to the stage
addChild(myVideo);
}
}
}