User Guide

curve 723
cursorSize
Usage
-- Lingo syntax
memberObjRef.cursorSize
// JavaScript syntax
memberObjRef.cursorSize;
Description
Cursor cast member property; specifies the size of the animated color cursor cast member
whichCursorCastMember.
Bitmap cast members smaller than the specified size are displayed at full size, and larger ones are
scaled proportionally to the specified size.
The default value is 32 for Windows and 16 for the Macintosh. If you set an invalid value, an
error message appears when the movie runs (but not when you compile).
This property can be tested and set.
Example
This command resizes the animated color cursor stored in cast member 20 to 32 by 32 pixels.
-- Lingo syntax
member(20).cursorSize = 32
// JavaScript syntax
member(20).cursorSize = 32;
curve
Usage
-- Lingo syntax
memberObjRef.curve[curveListIndex]
// JavaScript syntax
memberObjRef.curve[curveListIndex];
Description
This property contains the vertexList of an individual curve (shape) from a vector shape cast
member. You can use the curve property along with the
vertex property to get individual vertices
of a specific curve in a vector shape.
A
vertexList is a list of vertices, and each vertex is a property list containing up to three
properties: a #vertex property with the location of the vertex, a #handle1 property with the
location of the first control point for that vertex, and a #handle2 property with the location of the
second control point for that vertex. See
vertexList.
Specify size: For cursors up to:
16
16 by 16 pixels
32
32 by 32 pixels