How does one control the mouse cursor in Python, i.e. move it to certain position and click, under Windows?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Tested on WinXP, Python 2.6 after installing pywin32 (pywin32-214.win32-py2.6.exe in my case):
|
|||||||||||||||||
|
|
You can use win32api or ctypes to call win32 api call, to control mouse or any gui. A fun sample here to control mouse ;) using win32api
a click using ctypes
|
|||||||||
|
|
Check out the cross platform PyMouse: https://github.com/pepijndevos/PyMouse/ |
|||
|
|
|
Dont know python but perhaps a google would help "Python controlling mouse movement" revealed this http://danielbaggio.blogspot.com/2009/03/python-mouse-move-in-5-lines-of-code.html
|
|||||||||
|
|
This has nothing to do with Python directly. You have to access the toolkits provided by the system. Have a look at the Windows API. |
|||
|
|