placeMouse()

Move mouse pointer at given coordinates.
Old locateMouse() syntax is still valid but discouraged.

Syntax:
placeMouse( x , y )

Example:
while not key(k_esc)
    placeMouse( rnd(640), rnd(480) )
    wait(200)
wend