Difference between revisions of "Event.KEY UP"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
Line 18: Line 18:
  
 
=== Example ===
 
=== Example ===
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
function onKeyUp(e)
 
function onKeyUp(e)
 
print(e.keyCode, e.realCode)
 
print(e.keyCode, e.realCode)

Revision as of 15:26, 13 July 2023

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. Modifiers can have values of:

Parameters

keyCode: (number) code of the key pressed
realCode: (number) real keyCode underneath
modifiers: (number) modifiers present, or nil if not supported

Example

<syntaxhighlight lang="lua"> function onKeyUp(e) print(e.keyCode, e.realCode) end

stage:addEventListener(Event.KEY_UP, onKeyUp) </source> note: for this event to work you need to add your sprite to the stage (scene).