User Guide
Chapter 368
Dot syntax:
characterAlign = member("Rokujo Speaks").alignment
Verbose syntax:
set characterAlign = the alignment of member "Rokujo Speaks"
This repeat loop consecutively sets the alignment of the field cast member Rove to left, center,
and then right.
Dot syntax:
repeat with i = 1 to 3
member("Rove").alignment = ("left center right").word[i]
end repeat
Verbose syntax:
repeat with i = 1 to 3
set the alignment of member "Rove" to word i of "left center right"
end repeat
See also
text, font, lineHeight (cast member property), fontSize, fontStyle, &
(concatenator)
, && (concatenator)
allowCustomCaching
Syntax
the allowCustomCaching
Description
Movie property; will contain information regarding a private cache in future versions of Director.
This property defaults to
TRUE, and can be tested and set.
See also
allowGraphicMenu, allowSaveLocal, allowTransportControl, allowVolumeControl,
allowZooming
allowGraphicMenu
Syntax
the allowGraphicMenu
Description
Movie property; sets the availability of the graphic controls in the context menu when playing the
movie in a Shockwave environment.
Set this property to
FALSE if you would rather have a text menu displayed than the graphic
context menu.
This property defaults to
TRUE, and can be tested and set.
Example
the allowGraphicMenu = 0
See also
allowSaveLocal, allowTransportControl, allowVolumeControl, allowZooming