How to control mouse in Python, i.e. move it to certain position and click.
Thank you, Sasha
feedback
|
|
Tested on WinXP, Python 2.6 after installing pywin32 (pywin32-214.win32-py2.6.exe in my case):
| |||||||||
feedback
|
|
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
| |||||||||
feedback
|
|
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
| |||||
feedback
|
|
Check out the cross platform PyMouse: https://github.com/pepijndevos/PyMouse/ | |||
|
feedback
|
|
You'll really need to specify which GUI toolkit you're using in order to get a detailed answer. The specific answer depends on operating system, widget toolkit, and to some extent, which implementation of python you're using. In short, this is an unanswerable question. | |||||||
feedback
|
|
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. | |||
|
feedback
|
|
If you're trying the answer in a VirtualBox VM and it doesn't seem to work, try disabling mouse pointer integration. Thanks for the solution! | |||
|
feedback
|