User Guide

romanLingo 959
rightMouseUp
Usage
-- Lingo syntax
_mouse.rightMouseUp
// JavaScript syntax
_mouse.rightMouseUp;
Description
Mouse property; indicates whether the right mouse button (Windows) or the mouse button and
Control key (Macintosh) are currently not being pressed (
TRUE) or are currently being pressed
(
FALSE). Read-only.
On the Macintosh,
rightMouseUp is TRUE only if the emulateMultiButtonMouse property
is
TRUE.
Example
This statement checks whether the right mouse button in Windows is released and plays the
sound Click Me if it is:
-- Lingo syntax
if (_mouse.rightMouseUp) then
sound(2).play(member("Click Me"))
end if
// JavaScript syntax
if (_mouse.rightMouseUp) {
sound(2).play(member("Click Me"));
}
See also
emulateMultibuttonMouse, Mouse
romanLingo
Usage
the romanLingo
Description
System property; specifies whether Lingo uses a single-byte (TRUE) or double-byte interpreter
(FALSE).
The Lingo interpreter is faster with single-byte character sets. Some versions of Macintosh system
software—Japanese, for example—use a double-byte character set. U.S. system software uses a
single-byte character set. Normally,
romanLingo is set when Director is first started and is
determined by the local version of the system software.
If you are using a non-Roman script system but dont use any double-byte characters in your
script, set this property to
TRUE for faster execution of your Lingo scripts.