Blitz3D Docs -> 2D - Category -> Text -> Locate
Locate x,y
Parameters:
x=x coordinate on the screeny=y coordinate on the screen
Description:
Sometimes you want to place the PRINT and Input$ commands at a specific location on the screen. This command locates the 'cursor' to the designated location.Example:
; Locate example
strName$=Input$("What is your name?")
Locate 100,200
Print "Hello there, " + strName$
While Not KeyHit(1)
Wend
Comments
None.
Blitz3D Manual Forum
BlitzPlus Equivalent Command




