Event.KEY CHAR

From GiderosMobile
Revision as of 15:26, 13 July 2023 by Hgy29 (talk | contribs) (Text replacement - "<source" to "<syntaxhighlight")

Available since: Gideros 2016.04
Value: keyChar
Defined by: Sprite

Description

This event is dispatched when a supported key is pressed. For the list of supported keys, check the KeyCode class.

Parameters

text: (String) text of the key char pressed

Example

<syntaxhighlight lang="lua"> local textc = TextField.new(nil, "key chars: ") textc:setScale(4) textc:setPosition(10, 130) stage:addChild(textc)

local function onKeyChar(event) textc:setText("key chars: "..event.text) end stage:addEventListener(Event.KEY_CHAR, onKeyChar) </source> note: for this event to work you need to add your sprite to the stage (scene).