ICuePointHolder

Kind of class:interface
Inherits from:none
Implemented by:
Author:Andrew Guldman
Classpath:mx.controls.streamingmedia.ICuePointHolder
File last modified:Tuesday, 18 December 2007, 15:44:38
ICuePointHolder defined the functions that a holder of cue points
must implement. Streaming media players will implement this interface.

Summary


Instance methods

Instance methods

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.

getCuePoint

function getCuePoint (
pointName:String) : CuePoint

Parameters:
pointName:
The name of the cue point to find.
Returns:
  • The CuePoint associated with this object that has the given
    name.

getCuePoints

function getCuePoints (
) : Array

Returns:
  • An array of CuePoint objects. All the CuePoints associated
    with this object.

removeAllCuePoints

function removeAllCuePoints (
) : Void

Remove all the CuePoints.

removeCuePoint

function removeCuePoint (
aCuePoint:CuePoint) : Void

Remove the given cue point.
Parameters:
aCuePoint:
The CuePoint to remove.

setCuePoints

function setCuePoints (
cps:Array) : Void

Returns:
  • An array of CuePoint objects. All the CuePoints associated
    with this object.