User Guide

568 FLVPlayback Component (Flash Professional Only)
Drag an FLVPlayback component to the Stage, and give it an instance name of
my_FLVPlybk. Then add the following code to the Actions panel on Frame 1 of
the Timeline:
/**
Requires:
- FLVPlayback component on the Stage with an instance name of my_FLVPlybk
*/
import mx.video.*;
var listenerObject:Object = new Object();
listenerObject.stateChange = function(eventObject:Object):Void {
if(my_FLVPlybk.buffering){
trace("The video is buffering");
}
};
my_FLVPlybk.addEventListener("stateChange", listenerObject);
my_FLVPlybk.contentPath = "http://www.helpexamples.com/flash/video/
water.flv";
See also
FLVPlayback.buffering, FLVPlayback.BUFFERING, FLVPlayback.state,
FLVPlayback.stateChange
FLVPlayback.bufferingBar
Availability
Flash Player 8.
Edition
Flash Professional 8.
Usage
my_FLVPlybk.bufferingBar
Description
Property; a MovieClip object that is the buffering bar control. This control displays when the
FLV file is in a loading or buffering state. See “Skinning FLV Playback Custom UI
components individually” on page 525 for more information on using FLV Playback Custom
UI components for playback controls.