User Guide

on zoomWindow 201
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 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 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, Window
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.