EasyManua.ls Logo

MACROMEDIA DIRECTOR MX 2004-DIRECTOR SCRIPTING - Page 153

MACROMEDIA DIRECTOR MX 2004-DIRECTOR SCRIPTING
1130 pages
Print Icon
To Next Page IconTo Next Page
To Next Page IconTo Next Page
To Previous Page IconTo Previous Page
To Previous Page IconTo Previous Page
Loading...
ENTER 153
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
ENTER refers only to Enter on the numeric keypad.
For a movie that plays back as an applet, use
RETURN to specify both Return in Windows and
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)

Related product manuals