hideKeyboard()
Purpose
Hide the virtual keyboard
Description
Hide the virtual keyboard.
Syntax
hideKeyboard( )
Arguments
Example
loop
c = controls( 0 )
printAt( 0, 0, "Press A to show keyboard" )
printAt( 0, 1, "Press B to hide keyboard" )
if c.a then
showKeyboard()
endIf
if c.b then
hideKeyboard()
endIf
update()
repeat
Associated Commands
input(), controls(), docked(), getKeyboardBuffer(), showKeyboard(), touch()