Package | cv.events |
Class | public class CuePointEvent |
Inheritance | CuePointEvent ![]() |
CuePointEvent.CUE_POINT
: dispatched when the VideoManager has encountered a cue point.See also
Property | Defined by | ||
---|---|---|---|
cuePoint : Object
The reference to the cue point object.
| CuePointEvent |
Method | Defined 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 |
Constant | Defined by | ||
---|---|---|---|
CUE_POINT : String = "cuePoint" [static]
Defines the value of the
type property of an cuePoint
event object. | CuePointEvent |
cuePoint | property |
public var cuePoint:Object
The reference to the cue point object.
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.
Parameterstype: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.
|
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.
ReturnsEvent — 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
]
String — A string representation of the CuePointEvent object.
|
CUE_POINT | constant |
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:
Property | Value |
---|---|
bubbles | false |
cancelable | false ; there is
no default behavior to cancel. |
cuePoint | The cue point object. |
currentTarget | The object that is actively processing the event object with an event listener. |
target | The 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. |