Jump to content

Recommended Posts

Posted

I was wondering with AutoItv3 can you make a script to allow you to tell your cursor to move down x/y coordinates.

Ex. Move the cursor down 50 Y coordinates from where the cursor is currently.

Posted

MouseMove ( x, y [, speed] ) in conjunction with MouseGetPos()

$pos = MouseGetPos()
MouseMove($pos[0],$pos[1]+50)

Its in the manual, read it!

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...