mx.controls.streamingmedia.ICuePointHolder
ICuePointHolder defined the functions that a holder of cue points must implement. Streaming media players will implement this interface.
function getCuePoints():Array
- Return
- An array of CuePoint objects. All the CuePoints associated with this object.
function setCuePoints(cps:Array):Void
- Return
- An array of CuePoint objects. All the CuePoints associated with this object.
function getCuePoint(pointName:String):CuePoint
- Parameters
pointName
The name of the cue point to find. - Return
- The CuePoint associated with this object that has the given name.
function addCuePoint(aName:String, aTime:Number):Void
Add the given cue point.
- Parameters
aName
The name of the CuePoint to add. aTime
The time of the CuePoint to add.
function addCuePointObject(aCuePoint:CuePoint):Void
Add the given cue point.
- Parameters
aCuePoint
The CuePoint to add.
function removeCuePoint(aCuePoint:CuePoint):Void
Remove the given cue point.
- Parameters
aCuePoint
The CuePoint to remove.