User Guide

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)