Difference between revisions of "Event.KEY UP"
From GiderosMobile
(added example) |
|||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
− | + | '''Available since:''' Gideros 2011.6<br/> | |
− | ''' | + | '''Value:''' keyUp<br/> |
− | ''' | + | '''Defined by:''' [[Controller]]<br/> |
− | ''' | + | === Description === |
− | === | + | This event is dispatched when a button on a controller is released. |
− | + | === Parameters === | |
− | === | + | '''playerId''': (number) id of controller/player that released the button<br/> |
− | '''playerId''': (number) | + | '''keyCode''': (number) button key code that was released<br/> |
− | '''keyCode''': (number) | + | |
− | + | ||
− | + | ---- | |
− | ''' | + | |
− | ''' | + | |
− | ''' | + | '''Available since:''' Gideros 2011.6<br/> |
− | === | + | '''Value:''' keyUp<br/> |
− | + | '''Defined by:''' [[Sprite]]<br/> | |
− | === | + | === Description === |
− | '''keyCode''': (number) | + | This event is dispatched when a supported key is released. For the list of supported keys, check [[Special:MyLanguage/KeyCode|KeyCode]] class. |
− | '''realCode''': (number) | + | === Parameters === |
+ | '''keyCode''': (number) code of the key pressed<br/> | ||
+ | '''realCode''': (number) real keyCode underneath<br/> | ||
+ | === Example === | ||
+ | <source lang="lua"> | ||
+ | function onKeyUp(e) | ||
+ | print(e.keyCode, e.realCode) | ||
+ | end | ||
+ | |||
+ | stage:addEventListener(Event.KEY_UP, onKeyUp) | ||
+ | </source> | ||
+ | |||
+ | {{GIDEROS IMPORTANT LINKS}} |
Revision as of 01:47, 22 November 2020
Available since: Gideros 2011.6
Value: keyUp
Defined by: Controller
Description
This event is dispatched when a button on a controller is released.
Parameters
playerId: (number) id of controller/player that released the button
keyCode: (number) button key code that was released
Available since: Gideros 2011.6
Value: keyUp
Defined by: Sprite
Description
This event is dispatched when a supported key is released. For the list of supported keys, check KeyCode class.
Parameters
keyCode: (number) code of the key pressed
realCode: (number) real keyCode underneath
Example
function onKeyUp(e)
print(e.keyCode, e.realCode)
end
stage:addEventListener(Event.KEY_UP, onKeyUp)