Difference between revisions of "KeyCode"
From GiderosMobile
Line 3: | Line 3: | ||
'''Available since:''' Gideros 2011.6<br/> | '''Available since:''' Gideros 2011.6<br/> | ||
=== Description === | === Description === | ||
− | <br /> | + | <translate><br /> |
− | KeyCode table holds the key code constants. These map directly to a physical key on the keyboard.<br /> | + | KeyCode table holds the key code constants. These map directly to a physical key on the keyboard.<br /></translate> |
=== Examples === | === Examples === | ||
'''Listening for back button'''<br/> | '''Listening for back button'''<br/> |
Revision as of 13:38, 23 August 2018
Supported platforms: android, ios, mac, pc
Available since: Gideros 2011.6
Description
KeyCode table holds the key code constants. These map directly to a physical key on the keyboard.
Examples
Listening for back button
stage:addEventListener(Event.KEY_DOWN, function(event)
if event.keyCode == KeyCode.BACK then
application:exit()
end
end)