User Guide
534 Chapter 6: Components Dictionary
Returns
Nothing.
Description
Method; deletes all cue point objects associated with a component instance.
Example
The following code deletes all cue point objects:
myMedia.removeAllCuePoints();
See also
Media.addCuePoint()
, Media.cuePoints, Media.removeCuePoint()
Media.removeCuePoint()
Applies to
MediaDisplay, MediaPlayback
Availability
Flash Player 7.
Edition
Flash MX Professional 2004.
Usage
myMedia.removeCuePoint(cuePoint)
Parameters
cuePoint
A reference to a cue point object that has been assigned previously by means of
Media.addCuePoint().
Returns
Nothing.
Description
Method; deletes a cue point associated with a component instance.
Example
The following code deletes a cue point named myCuePoint:
myMedia.removeCuePoint(getCuePoint("myCuePoint"));
See also
Media.addCuePoint()
, Media.cuePoints, Media.removeAllCuePoints()