printAt()
Purpose
Print text to the screen at the specfied location
Description
Prints text to the screen at the specfied position and text size and in the current ink colour
Syntax
printAt( x, y, values )
Arguments
x The horizontal cursor position to start printing.
y The vertical cursor position to start printing.
values A comma separated list of values to print.
Example
hideKeyboard()
ink( red )
textSize( 50 )
message = "Hello World"
printAt( ( tWidth() - len( message ) ) / 2, tHeight() / 2, message )
update()
sleep( 3 )
Associated Commands
cursor(), drawText(), ink(), len(), print(), stringHash(), textSize(), tHeight(), tWidth()