User Guide

714 Chapter 14: Properties
This property is supported by SoundEdit cast members, QuickTime digital video cast members,
and Xtra extension cast members that contain cue points. Xtra extensions 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.
-- Lingo syntax
put member("symphony").cuePointNames[3]
// JavaScript syntax
put(member("symphony").cuePointNames[3]);
See also
cuePointTimes, mostRecentCuePoint
cuePointTimes
Usage
-- Lingo syntax
memberObjRef.cuePointTimes
// JavaScript syntax
memberObjRef.cuePointTimes;
Description
Cast member property; lists the times of the cue points, in milliseconds, for a given cast member.
Cue point times are useful for synchronizing sound, QuickTime, and animation.
This property is supported by SoundEdit cast members, QuickTime digital video cast members,
and Xtra extension cast members that support cue points. Xtra extensions that generate cue points
at run time may not be able to list cue point names.
Example
This statement obtains the time of the third cue point for a sound cast member.
-- Lingo syntax
put member("symphony").cuePointTimes[3]
// JavaScript syntax
put(member("symphony").cuePointTimes[3]);
See also
cuePointNames, mostRecentCuePoint