Lingo Dictionary > A-C > cuePointNames

 

cuePointNames

Syntax

member(whichCastMember).cuePointNames
the cuePointNames of member whichCastMember

Description

Cast member property; creates list of cue point names, or if a cue point is not named, inserts an empty string ("") as a placeholder in the list. Cue point names are useful for synchronizing sound, QuickTime, and animation.

This property is supported by AIFF and WAV sound files, QuickTime digital video cast members, and Xtras cast members that contain cue points. Xtras that generate cue points at run time may not be able to list cue point names.

Example

This statement obtains the name of the third cue point of a cast member.

Dot syntax:

put member("symphony").cuePointNames[3]

Verbose syntax:

put (getAt(the cuePointNames of member "symphony",3))

See also

cuePointTimes, mostRecentCuePoint, on cuePassed, isPastCuePoint()