User Guide
638 FLVPlayback Component (Flash Professional Only)
See also
FLVPlayback.activeVideoPlayerIndex, FLVPlayback.addEventListener(),
FLVPlayback.state, FLVPlayback.visibleVideoPlayerIndex
FLVPlayback.removeASCuePoint()
Availability
Flash Player 8.
Edition
Flash Professional 8.
Usage
my_FLVplybk.removeASCuePoint(CuePoint:Object):Object
my_FLVplybk.removeASCuePoint(time:Number):Object
my_FLVplybk.removeASCuePoint(name:String):Object
Parameters
CuePoint A cue point object containing the time and name properties for the cue point to
remove. The method does not check any other properties on the incoming cue point object. If
time or name is null or undefined, the method uses only the available property. If only name
is given, the method removes the first cue point with this name.
time A number containing the time of the cue point to remove. The method removes the
first cue point with this time.
name A string that contains the name of the cue point to remove. The method removes the
first cue point with this name.
Returns
The cue point object that was removed. If there is no matching cue point, the method
returns
null.
Description
Method; removes an ActionScript cue point from the currently loaded FLV file. Only the
name and time properties are used from CuePoint parameter to find the cue point to remove.
If multiple ActionScript cue points match the search criteria, only one is removed. To remove
all, call this function repeatedly in a loop with the same parameters until it returns null.
Cue point information is wiped out when the
contentPath property is set, so to set cue point
information for the next FLV file to be loaded, set the
contentPath property first.