ActionScript® 3.0 Reference for the Adobe® Flash® Platform
Home  |  Show Packages and Classes List |  Packages  |  Classes  |  What's New  |  Index  |  Appendixes
fl.video 

IVPEvent  - AS3 Flash

Packagefl.video
Interfacepublic interface IVPEvent
Implementors AutoLayoutEvent, MetadataEvent, VideoEvent, VideoProgressEvent

Language Version: ActionScript 3.0
Product Version: Flash CS3
Runtime Versions: Flash Player 9.0.28.0, AIR 1.0

The IVPEvent interface is implemented by video events that apply to a specific VideoPlayer object within the FLVPlayback component. When multiple VideoPlayer objects are used within the FLVPlayback component, each one is assigned a different index, and these indices are used with the visibleVideoPlayerIndex property, the activeVideoPlayerIndex property, and the getVideoPlayer() method. When an event is triggered that is specific to a single VideoPlayer object, the event class implements the IVPEvent interface and the vp property is equal to the index of the VideoPlayer object involved in the event.



Public Properties
 PropertyDefined By
  type : String
[read-only] The type of event.
IVPEvent
  vp : uint
The index of the VideoPlayer object involved in this event.
IVPEvent
Property Detail

type

property
type:String  [read-only]

Language Version: ActionScript 3.0
Product Version: Flash CS3
Runtime Versions: Flash Player 9.0.28.0, AIR 1.0

The type of event. The type is case-sensitive.



Implementation
    public function get type():String

vp

property 
vp:uint

Language Version: ActionScript 3.0
Product Version: Flash CS3
Runtime Versions: Flash Player 9.0.28.0, AIR 1.0

The index of the VideoPlayer object involved in this event.



Implementation
    public function get vp():uint
    public function set vp(value:uint):void