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
pointNameThe 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):VoidAdd the given cue point.
- Parameters
aNameThe name of the CuePoint to add. aTimeThe time of the CuePoint to add.
function addCuePointObject(aCuePoint:CuePoint):VoidAdd the given cue point.
- Parameters
aCuePointThe CuePoint to add.
function removeCuePoint(aCuePoint:CuePoint):VoidRemove the given cue point.
- Parameters
aCuePointThe CuePoint to remove.