MACROMEDIA DIRECTOR MX 2004-DIRECTOR SCRIPTING Reference page 201

Director scripting reference
Table of Contents

Advertisement

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

Hide quick links:

Advertisement

Table of Contents
loading
Need help?

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

This manual is also suitable for:

Director mx 2004

Table of Contents