Name
Locate -- set the cursor position
Synopsis
Locate(x, y)
Function
This function sets the cursor to x,y. The cursor position is used by the Print function as the position where the output starts.

Please note: You cannot specify any of Hollywood's special constants for x or y because there is no reference width or height, therefore things like #CENTER, #BOTTOM, #RIGHT etc. cannot work. If you want to use these special constants, you will have to use the function TextOut() to print your text.

Inputs
x
desired new position
y
desired new position

Show TOC