trayIconRightMouseDown
Usage
-- Lingo syntax
on trayIconRightMouseDown
statement(s)
end
// JavaScript syntax
function trayIconRightMouseDown() {
statement(s);
}
Description
Movie and Window event handler (Microsoft Windows only). Contains statements that run
when a user right-clicks the system tray icon.
The
trayIconRightMouseDown
is set to
.
TRUE
Example
The following handler pauses a movie when a user right-clicks the system tray icon.
-- Lingo syntax
on trayIconRightMouseDown
_movie.delay(500)
end
// JavaScript syntax
function trayIconRightMouseDown() {
_movie.delay(500);
}
See also
Movie, systemTrayIcon, trayIconMouseDoubleClick, trayIconMouseDown,
on zoomWindow
Usage
-- Lingo syntax
on zoomWindow
statement(s)
end
// JavaScript syntax
function zoomWindow() {
statement(s);
}
Description
System message and event handler; contains statements that execute whenever a movie running as
a movie in a window (MIAW) is resized. This happens when the user clicks the Minimize or
Maximize button (Windows) or the Zoom button (Macintosh). The operating system determines
the dimensions after resizing the window.
event is sent to the handler only if the
property
systemTrayIcon
Window
on zoomWindow
201
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