Difference between revisions of "Event.KEY UP"

From GiderosMobile
(added example)
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(5 intermediate revisions by 2 users not shown)
Line 2: Line 2:
 
'''Available since:''' Gideros 2011.6<br/>
 
'''Available since:''' Gideros 2011.6<br/>
 
'''Value:''' keyUp<br/>
 
'''Value:''' keyUp<br/>
'''Defined by:''' [[Controller]]<br/>
+
'''Defined by:''' [[Sprite]]<br/>
 +
 
 
=== Description ===
 
=== Description ===
This event is dispatched when a button on a controller is released.
+
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.MODIFIER_NONE]]
'''playerId''': (number) id of controller/player that released the button<br/>
+
*[[KeyCode.MODIFIER_SHIFT]]
'''keyCode''': (number) button key code that was released<br/>
+
*[[KeyCode.MODIFIER_CTRL]]
 +
*[[KeyCode.MODIFIER_ALT]]
 +
*[[KeyCode.MODIFIER_META]]
  
 
----
 
 
 
'''Available since:''' Gideros 2011.6<br/>
 
'''Value:''' keyUp<br/>
 
'''Defined by:''' [[Sprite]]<br/>
 
=== Description ===
 
This event is dispatched when a supported key is released. For the list of supported keys, check [[Special:MyLanguage/KeyCode|KeyCode]] class.
 
 
=== Parameters ===
 
=== Parameters ===
 
'''keyCode''': (number) code of the key pressed<br/>
 
'''keyCode''': (number) code of the key pressed<br/>
 
'''realCode''': (number) real keyCode underneath<br/>
 
'''realCode''': (number) real keyCode underneath<br/>
 +
'''modifiers''': (number) modifiers present, or nil if not supported<br/>
 +
 
=== Example ===
 
=== Example ===
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
function onKeyUp(e)
 
function onKeyUp(e)
 
print(e.keyCode, e.realCode)
 
print(e.keyCode, e.realCode)
Line 28: Line 24:
  
 
stage:addEventListener(Event.KEY_UP, onKeyUp)
 
stage:addEventListener(Event.KEY_UP, onKeyUp)
</source>
+
</syntaxhighlight>
 +
'''note''': for this event to work you need to add your sprite to the stage (scene).
  
{{GIDEROS IMPORTANT LINKS}}
+
{{Sprite}}

Latest revision as of 15:27, 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

function onKeyUp(e)
	print(e.keyCode, e.realCode)
end

stage:addEventListener(Event.KEY_UP, onKeyUp)

note: for this event to work you need to add your sprite to the stage (scene).