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.
must implement. Streaming media players will implement this interface.
Summary
Instance methods
- getCuePoints : Array
- setCuePoints (cps:Array) : Void
- getCuePoint (pointName:String) : CuePoint
- addCuePoint (aName:String, aTime:Number) : Void
- Add the given cue point.
- addCuePointObject (aCuePoint:CuePoint) : Void
- Add the given cue point.
- removeCuePoint (aCuePoint:CuePoint) : Void
- Remove the given cue point.
- removeAllCuePoints : Void
- Remove all the CuePoints.
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
Add the given cue point.
Parameters:
aCuePoint:
The CuePoint to add.
getCuePoint
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
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.