Type String Event userInput Revision Release 2025.3721 Keywords userInput, newCharacters
New characters that were typed in for the event.
This property is only available during the "editing" phase of userInput events.
local defaultField
local function textListener( event )
if ( event.phase == "editing" ) then
print( event.newCharacters )
end
end
defaultField = native.newTextField( 150, 150, 180, 30 )
defaultField:addEventListener( "userInput", textListener )