MACROMEDIA DIRECTOR MX 2004-DIRECTOR SCRIPTING Reference page 153

Director scripting reference
Table of Contents

Advertisement

ENTER
Usage
--Lingo syntax
ENTER
// JavaScript syntax
3 // value of _key.keyCode
Description
Character constant; represents Enter (Windows) or Return (Macintosh) for a carriage return.
On PC keyboards, the element
For a movie that plays back as an applet, use
Enter on the Macintosh.
Example
This statement checks whether Enter is pressed and if it is, sends the playhead to the frame
:
addSum
-- Lingo syntax
on keyDown
if (_key.key = ENTER) then _movie.go("addSum")
end
// JavaScript syntax
function keyDown() {
if (_key.keyCode == 3) {
_movie.go("addSum");
}
}
See also
RETURN (constant)
refers only to Enter on the numeric keypad.
ENTER
to specify both Return in Windows and
RETURN
ENTER
153

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

Subscribe to Our Youtube Channel

This manual is also suitable for:

Director mx 2004

Table of Contents