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 {
trace(my_FLVPlybk.state);
};
my_FLVPlybk.addEventListener("stateChange", listenerObject);
my_FLVPlybk.contentPath = "http://www.helpexamples.com/flash/video/
water.flv";
See also
FLVPlayback.addEventListener()
FLVPlayback.stateResponsive
Availability
Flash Player 8.
Edition
Flash Professional 8.
Usage
my_FLVPlybk.stateResponsive
Description
Property; a Boolean value that is
calls to the
,
play()
load()
later, when the state changes to a responsive one. Because these calls are queued and executed
later, it is usually not necessary to track the value of the
responsive states are:
Example
The following example displays the values of the
the state changes while the FLV file plays.
,
FLVPlayback.state
if the state is responsive. If the state is unresponsive,
true
,
,
stop()
pause()
,
disconnected
stopped
and
methods are queued and executed
seek()
stateResponsive
,
,
, and
playing
paused
and
state
stateResponsive
property. The
. Read only.
buffering
properties as
FLVPlayback class
677
Need help?
Do you have a question about the FLASH 8-COMPONENTS LANGUAGE and is the answer not in the manual?
Questions and answers