User Guide
cuePointNames 713
Example
Although you typically inspect the creationDate property using the Property inspector or the
Cast window list view, you can check it in the Message window:
-- Lingo syntax
put(member(1).creationDate)
// JavaScript syntax
put(member(1).creationDate);
See also
Member
crop
Usage
member(whichCastMember).crop
the crop of member whichCastMember
Description
Cast member property; scales a digital video cast member to fit exactly inside the sprite rectangle
in which it appears (
FALSE), or it crops but doesn’t scale the cast member to fit inside the sprite
rectangle (
TRUE).
This property can be tested and set.
Example
This statement instructs Lingo to crop any sprite that refers to the digital video cast member
Interview.
Dot syntax:
member("Interview").crop = TRUE
Verbose syntax:
set the crop of member "Interview" to TRUE
See also
center
cuePointNames
Usage
-- Lingo syntax
memberObjRef.cuePointNames
// JavaScript syntax
memberObjRef.cuePointNames;
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.