200
Chapter 10: Events and Messages
Example
The following handler pauses a movie when a user double-clicks the system tray icon.
-- Lingo syntax
on trayIconMouseDoubleClick
_movie.delay(500)
end
// JavaScript syntax
function trayIconMouseDoubleClick() {
_movie.delay(500);
}
See also
Movie
,
systemTrayIcon
,
trayIconMouseDown
,
trayIconRightMouseDown
,
Window
trayIconMouseDown
Usage
-- Lingo syntax
on trayIconMouseDown
statement(s)
end
// JavaScript syntax
function trayIconMouseDown() {
statement(s);
}
Description
Movie and Window event handler (Microsoft Windows only). Contains statements that run
when a user single-clicks the system tray icon.
The
trayIconMouseDown
event is sent to the handler only if the
systemTrayIcon
property is set
to
TRUE
.
Example
The following handler pauses a movie when a user clicks the mouse when the mouse is over the
system tray icon.
-- Lingo syntax
on trayIconMouseDown
_movie.delay(500)
end
// JavaScript syntax
function trayIconMouseDown() {
_movie.delay(500);
}
See also
Movie
,
systemTrayIcon
,
trayIconMouseDoubleClick
,
trayIconRightMouseDown
,
Window
Содержание DIRECTOR MX 2004-DIRECTOR SCRIPTING
Страница 1: ...DIRECTOR MX 2004 Director Scripting Reference...
Страница 48: ...48 Chapter 2 Director Scripting Essentials...
Страница 100: ...100 Chapter 4 Debugging Scripts in Director...
Страница 118: ...118 Chapter 5 Director Core Objects...
Страница 594: ...594 Chapter 12 Methods...
Страница 684: ...684 Chapter 14 Properties See also DVD...
Страница 702: ...702 Chapter 14 Properties See also face vertices vertices flat...
Страница 856: ...856 Chapter 14 Properties JavaScript syntax sprite 15 member member 3 4...
Страница 889: ...netPresent 889 _player alert Sorry the Network Support Xtras could not be found See also Player...
Страница 1102: ...1102 Chapter 14 Properties...