Media.cuePoint

Applies to

MediaDisplay, MediaPlayback.

Availability

Flash Player 7.

Edition

Flash MX Professional 2004.

Usage

var listenerObject:Object = new Object();
listenerObject.cuePoint = function(eventObj:Object) {
    // ...
};
myMedia.addEventListener("cuePoint", listenerObject);

Description

Event; notification that the playhead has reached the cue point. The Media.cuePoint event object has the following properties:

cuePointName A string that indicates the name of the cue point.

cuePointTime A number, expressed in frames or seconds, that indicates when the cue point was reached.

target A reference to the MediaPlayback object if there is one, or to the MediaDisplay object itself.

type The string "cuePoint".

Example

The following example uses an object listener to determine when a cue point has been reached:

var myCuePointListener:Object = new Object();
myCuePointListener.cuePoint = function(eventObject:Object){
    trace("heard " + eventObject.type + ", " + eventObject.target + ", " + eventObject.cuePointName + ", " + eventObject.cuePointTime);
};
myPlayback.addEventListener("cuePoint", myCuePointListener);

See also

Media.addCuePoint(), Media.cuePoints, Media.getCuePoint()


Flash CS3