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
, this property allows the user to enter double-byte characters directly into the
TRUE
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
The cursor interval is independent of the frame rate set for the movie using the tempo channel or
the
puppetTempo
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
814
Chapter 14: Properties
whichCursorCastMember
Lingo command.
. The default interval is 100 ms.
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