trayIconMouseDoubleClick
199
on timeOut
Usage
-- Lingo syntax
on timeOut
statement(s)
end
// JavaScript syntax
function timeOut() {
statement(s);
}
Description
System message and event handler; contains statements that run when the keyboard or mouse is
not used for the time period specified in
timeOutLength.
Always place an
on timeOut
handler
in a movie script.
To have a timeout produce the same response throughout a movie, use
the timeoutScript
to
centrally control timeout behavior.
Example
The following handler plays the movie Attract Loop after users do nothing for the time set in the
timeoutLength
property. It can be used to respond when users leave the computer.
-- Lingo syntax
on timeOut
_movie.play("Attract Loop")
end timeOut
// JavaScript syntax
function timeOut() {
_movie.play("Attract Loop");
}
trayIconMouseDoubleClick
Usage
-- Lingo syntax
on trayIconMouseDoubleClick
statement(s)
end
// JavaScript syntax
function trayIconMouseDoubleClick() {
statement(s);
}
Description
Movie and Window event handler (Microsoft Windows only). Contains statements that run
when a user double-clicks the system tray icon.
The
trayIconMouseDoubleClick
event is sent to the handler only if the
systemTrayIcon
property is set to
TRUE
.
Summary of Contents for DIRECTOR MX 2004-DIRECTOR SCRIPTING
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...