Packagecv.events
Classpublic class CuePointEvent
InheritanceCuePointEvent Inheritance flash.events.Event

The CuePointEvent class defines events for the VideoManager. These events include the following:

See also

VideoManager


Public Properties
 PropertyDefined by
  cuePoint : Object
The reference to the cue point object.
CuePointEvent
Public Methods
 MethodDefined by
  
CuePointEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, cuePoint:Object = null)
Creates a new CuePointEvent object with the specified parameters.
CuePointEvent
  
clone():Event
Creates a copy of the CuePointEvent object and sets the value of each parameter to match the original.
CuePointEvent
  
toString():String
Returns a string that contains all the properties of the CuePointEvent object.
CuePointEvent
Public Constants
 ConstantDefined by
  CUE_POINT : String = "cuePoint"
[static] Defines the value of the type property of an cuePoint event object.
CuePointEvent
Property detail
cuePointproperty
public var cuePoint:Object

The reference to the cue point object.

Constructor detail
CuePointEvent()constructor
public function CuePointEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, cuePoint:Object = null)

Creates a new CuePointEvent object with the specified parameters.

Parameters
type:String — The event type; this value identifies the action that caused the event.
 
bubbles:Boolean (default = false) — Indicates whether the event can bubble up the display list hierarchy.
 
cancelable:Boolean (default = false) — Indicates whether the behavior associated with the event can be prevented.
 
cuePoint:Object (default = null) — The cue point object.
Method detail
clone()method
public override function clone():Event

Creates a copy of the CuePointEvent object and sets the value of each parameter to match the original.

Returns
Event — A new CuePointEvent object with parameter values that match those of the original.
toString()method 
public override function toString():String

Returns a string that contains all the properties of the CuePointEvent object. The string is in the following format:

[CuePointEvent type=value bubbles=value cancelable=value cuePoint=value]

Returns
String — A string representation of the CuePointEvent object.
Constant detail
CUE_POINTconstant
public static const CUE_POINT:String = "cuePoint"

Defines the value of the type property of an cuePoint event object.

This event has the following properties:

PropertyValue
bubblesfalse
cancelablefalse; there is no default behavior to cancel.
cuePointThe cue point object.
currentTargetThe object that is actively processing the event object with an event listener.
targetThe object that dispatched the event. The target is not always the object listening for the event. Use the currentTarget property to access the object that is listening for the event.