move_on_screen
move_on_screen($x,$y,$time=0,$tremble=5); - this function is used to emulate moving the mouse cursor to a specified point on the screen
The function accepts parameters as input:
$x – x - coordinate of the point to move the cursor to, relative to the upper-left corner of the desktop. (int)
$y – y - coordinate of the point to move the cursor to, relative to the upper-left corner of the desktop. (int)
$time – the time it takes to move from the current point (parameter is available from 4.6.9). (int)
$tremble – the amplitude of the trajectory jitter (for more human-like emulation) (parameter is available from 4.6.48). (int)
After testing, the function returns the result of its work to the script :
true – successfully moved to the specified point (boolean)false – operation failed (boolean)