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
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