showKeyboard()
Purpose
Show the virtual keyboard
Description
Display the virtual keyboard on the screen.
Syntax
showKeyboard( )
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(), touch(), hideKeyboard()