What I'm trying to do with this script is create cords for the mouse to travel too but I want the X cords to move to a location which is in the range of 0-1670.
import win32api
import win32con
def move(x,y):
win32api.SetCursorPos((x,y))
move(1670,955)
Any help would be great!