Difference between revisions of "Event.KEY UP"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2011.6<br/> === Description === Button on controller was released up __NOTOC__ '''Available since:''' Gideros 2011.6<br/> === Descript...")
 
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(14 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 
'''Available since:''' Gideros 2011.6<br/>
 
'''Available since:''' Gideros 2011.6<br/>
 +
'''Value:''' keyUp<br/>
 +
'''Defined by:''' [[Sprite]]<br/>
 +
 
=== Description ===
 
=== Description ===
Button on controller was released up
+
This event is dispatched when a supported key is released. For the list of supported keys, check [[KeyCode]] class. Modifiers can have values of:
__NOTOC__
+
*[[KeyCode.MODIFIER_NONE]]
'''Available since:''' Gideros 2011.6<br/>
+
*[[KeyCode.MODIFIER_SHIFT]]
=== Description ===
+
*[[KeyCode.MODIFIER_CTRL]]
This event is dispatched when a supported key is released. For the list of supported keys, check `KeyCode` class.
+
*[[KeyCode.MODIFIER_ALT]]
 +
*[[KeyCode.MODIFIER_META]]
 +
 
 +
=== Parameters ===
 +
'''keyCode''': (number) code of the key pressed<br/>
 +
'''realCode''': (number) real keyCode underneath<br/>
 +
'''modifiers''': (number) modifiers present, or nil if not supported<br/>
 +
 
 +
=== Example ===
 +
<syntaxhighlight lang="lua">
 +
function onKeyUp(e)
 +
print(e.keyCode, e.realCode)
 +
end
 +
 
 +
stage:addEventListener(Event.KEY_UP, onKeyUp)
 +
</syntaxhighlight>
 +
'''note''': for this event to work you need to add your sprite to the stage (scene).
 +
 
 +
{{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).