I am a complete newbie in Python, so I don't understand it. I want to use python to simply click on a specific point. I already managed to left click with ctypes:
>>> import ctypes >>> ctypes.windll.user32.SetCursorPos(x,y), ctypes.windll.user32.mouse_event(2,0,0,0,0), ctypes.windll.user32.mouse_event(4,0,0,0,0)
Is there a way to make a right click in the same way?
Robert Thackeray
source share