User Guide

634 Chapter 14: Properties
angleCount
Usage
-- Lingo syntax
dvdObjRef.angleCount
// JavaScript syntax
dvdObjRef.angleCount;
Description
DVD property; returns the number of available camera angles in the current title. Read-only.
The returned value is an integer that can range from 1 to 9.
Example
This statement returns the number of available camera angles:
-- Lingo syntax
put(member(12).angleCount) -- 2
// JavaScript syntax
put(member(12).angleCount); // 2
See also
DVD
animationEnabled
Usage
member(whichCastmember).animationEnabled
Description
3D cast member property; indicates whether motions will be executed (TRUE) or ignored (FALSE).
This property can also be set in the Property inspector.
The default value for this property is
TRUE.
Example
This statement disables animation for the cast member named Scene.
member("Scene").animationEnabled = FALSE
antiAlias
Usage
-- Lingo syntax
memberOrSpriteObjRef.antiAlias
// JavaScript syntax
memberOrSpriteObjRef.antiAlias;