User Guide

FLVPlayback class 597
//this fires after the first flv is ready
my_FLVPlybk.activeVideoPlayerIndex = 1;
my_FLVPlybk.load("http://www.helpexamples.com/flash/video/
plane_cuepoints.flv");
} else {
//this fires after the second flv is ready
eventObject.target.activeVideoPlayerIndex = 0;
eventObject.target.play();
eventObject.target.activeVideoPlayerIndex = 1;
eventObject.target.play();
var layerOnTop:MovieClip = eventObject.target.getVideoPlayer(1);
layerOnTop._alpha = 50;
layerOnTop._visible = true;
}
}
my_FLVPlybk.addEventListener("ready", listenerObject);
See also
FLVPlayback.activeVideoPlayerIndex, FLVPlayback.bringVideoPlayerToFront(),
FLVPlayback.visibleVideoPlayerIndex
FLVPlayback.height
Availability
Flash Player 8.
Edition
Flash Professional 8.
Usage
my_FLVPlybk.height
Description
Property; a number that specifies the height of the FLVPlayback instance. This property
affects only the height of the FLVPlayback instance and does not include the height of a skin
SWF file that might be loaded. Use the FLVPlayback
height property and not the
MovieClip._height property because the _height property might give a different value if a
skin SWF file is loaded.
Example
The following example sets the width and height properties to change the size of the video
player. It first sets the
maintainAspectRatio property to false to prevent the video player
from resizing automatically when the dimensions change.