162
Chapter 10: Events and Messages
on closeWindow
Usage
-- Lingo syntax
on closeWindow
statement(s)
end
// JavaScript syntax
function closeWindow() {
statement(s);
}
Description
System message and event handler; contains statements that run when the user closes the window
for a movie by clicking the window’s close box.
The
on closeWindow
handler is a good place to put Lingo commands that you want executed
every time the movie’s window closes.
Example
This handler tells Director to
forget
the current window when the user closes the window that
the movie is playing in:
-- Lingo syntax
on closeWindow
-- perform general housekeeping here
window(1).forget()
end
// JavaScript syntax
function closeWindow() {
// perform general housekeeping here
window(1).forget();
}
on cuePassed
Usage
-- Lingo syntax
on cuePassed({me,}
channelID
,
cuePointNumber
,
cuePointName
)
statement(s)
end
// JavaScript syntax
function cuePassed(
channelID
,
cuePointNumber
,
cuePointName
) {
statement(s);
}
Description
System message and event handler; contains statements that run each time a sound or sprite
passes a cue point in its media.
•
me
The
optional
me
parameter is the
scriptInstanceRef
value of the script being invoked.
You must include this parameter when using the message in a behavior. If this parameter is
omitted, the other arguments will not be processed correctly.
Содержание 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...