MACROMEDIA DIRECTOR MX 2004-DIRECTOR SCRIPTING Reference page 648

Director scripting reference
Table of Contents

Advertisement

autoTab
Usage
-- Lingo syntax
memberObjRef.autoTab
// JavaScript syntax
memberObjRef.autoTab;
Description
Cast member property; determines the effect that pressing the Tab key has on the editable field or
text cast member specified by
inactive (
). Tabbing order depends on sprite number order, not position on the Stage.
FALSE
Example
This statement causes the cast member Comments to automatically advance the insertion point
to the next editable field or text sprite after the user presses Tab.
--Lingo syntax
member ("Comments").autotab = TRUE
// JavaScript syntax
member ("Comments").autotab = true;
axisAngle
Usage
member(whichCastmember).model(whichModel).transform.axisAngle
member(whichCastmember).camera(whichCamera).transform.axisAngle
member(whichCastmember).light(whichLight).transform.axisAngle
member(whichCastmember).group(whichGroup).transform.axisAngle
transformReference.axisAngle
Description
3D transform property; describes the transform's rotation as an axis/angle pair.
The
axisAngle
The vector is the axis around which the transform is rotated. The float is the amount, in degrees,
of rotation.
The default value of this property is
Example
This statement shows the rotation of the model named Mailbox as an axisAngle. The model is
rotated 145.5 degrees counterclockwise about the y axis.
put member("Yard").model("Mailbox").transform.axisAngle
-- [vector( 0.0000, 1.0000, 0.0000 ), -145.5000]
See also
rotation (transform)
648
Chapter 14: Properties
whichCastMember
property is a linear list containing a vector (the axis) and a float (the angle).
[vector( 1.0000, 0.0000, 0.0000 ), 0.0000]
. The property can be made active (
) or
TRUE
.

Hide quick links:

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the DIRECTOR MX 2004-DIRECTOR SCRIPTING and is the answer not in the manual?

Questions and answers

This manual is also suitable for:

Director mx 2004

Table of Contents