Interface mx.controls.streamingmedia.ICuePointHolder

mx.controls.streamingmedia.ICuePointHolder

Description

ICuePointHolder defined the functions that a holder of cue points must implement. Streaming media players will implement this interface.

Method Index

addCuePoint(), addCuePointObject(), getCuePoint(), getCuePoints(), removeAllCuePoints(), removeCuePoint(), setCuePoints()

Method Detail

getCuePoints

function getCuePoints():
Array
Return
An array of CuePoint objects. All the CuePoints associated with this object.

setCuePoints

function setCuePoints(cps:
Array):Void
Return
An array of CuePoint objects. All the CuePoints associated with this object.

getCuePoint

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.

addCuePoint

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.

addCuePointObject

function addCuePointObject(aCuePoint:
CuePoint):Void
Add the given cue point.
Parameters
aCuePoint The CuePoint to add.

removeCuePoint

function removeCuePoint(aCuePoint:
CuePoint):Void
Remove the given cue point.
Parameters
aCuePoint The CuePoint to remove.

removeAllCuePoints

function removeAllCuePoints():Void
Remove all the CuePoints.