814
Chapter 14: Properties
inlineImeEnabled
Usage
-- Lingo syntax
_player.inlineImeEnabled
// JavaScript syntax
_player.inlineImeEnabled;
Description
Player property; determines whether the Director Inline IME feature is turned on. Read/write.
When
TRUE
, this property allows the user to enter double-byte characters directly into the
Director Text, Field, Script, and Message windows on Japanese systems.
The default value is determined by the Enable Inline IME setting in Director General
Preferences.
See also
Player
interval
Usage
-- Lingo syntax
memberObjRef
.interval
// JavaScript syntax
memberObjRef
.interval;
Description
Cursor cast member property; specifies the interval, in milliseconds (ms), between each frame of
the animated color cursor cast member
whichCursorCastMember
. The default interval is 100 ms.
The cursor interval is independent of the frame rate set for the movie using the tempo channel or
the
puppetTempo
Lingo command.
This property can be tested and set.
Example
In this sprite script, when the animated color cursor stored in the cast member named Butterfly
enters the sprite, the interval is set to 50 ms to speed up the animation. When the cursor leaves
the sprite, the interval is reset to 100 ms to slow down the animation.
-- Lingo syntax
on mouseEnter
member("Butterfly").interval = 50
end
on mouseLeave
member("Butterfly").interval = 100
end
Summary of Contents for DIRECTOR MX 2004
Page 1: ...DIRECTOR MX 2004 Director Scripting Reference...
Page 48: ...48 Chapter 2 Director Scripting Essentials...
Page 100: ...100 Chapter 4 Debugging Scripts in Director...
Page 118: ...118 Chapter 5 Director Core Objects...
Page 594: ...594 Chapter 12 Methods...
Page 684: ...684 Chapter 14 Properties See also DVD...
Page 702: ...702 Chapter 14 Properties See also face vertices vertices flat...
Page 856: ...856 Chapter 14 Properties JavaScript syntax sprite 15 member member 3 4...
Page 1102: ...1102 Chapter 14 Properties...