What would be the easiest way to move the mouse around (and possibly click) using python on OS X?
This is just for rapid prototyping, it doesn't have to be elegant.
Thanks!
|
|
|
I dug through the source code of Synergy to find the call that generates mouse events:
Now to write Python bindings! |
|||||
|
|
Just try this code:
it works in OSX leopard 10.5.6 |
|||
|
|
|
When I wanted to do it, I installed Jython and used the
|
||||
|
|
|
Try the code at http://www.geekorgy.com/index.php/2010/06/python-mouse-click-and-move-mouse-in-apple-mac-osx-snow-leopard-10-6-x/, pasted below in case the site disappears. It defines a couple of functions, mousemove and mouseclick, which hook into Apple's integration between Python and the platform's Quartz libraries. This code works on 10.6, and I'm using it on 10.7. The nice thing about this code is that it generates mouse events, which some solutions don't. I use it to control BBC iPlayer by sending mouse events to known button positions in their Flash player (very brittle I know). The mouse move events, in particular, are required as otherwise the Flash player never hides the mouse cursor. Functions like CGWarpMouseCursorPosition will not do this.
|
|||
|
|
|
The python script from geekorgy.com is great except I ran into a few snags since I installed a newer version of python. So here are some tips to others who may be looking for a solution. If you installed Python 2.7 on your Mac OS 10.6 you have a few options to get python to import from Quartz.CoreGraphics: A) In the terminal, type B) You can install PyObjC by doing the following:
C) You can reset your python path to the original Mac OS python:
***Also, a quick way to find out the (x,y) coordinates on the screen:
|
|||
|
|
|
The easiest way? Compile this Cocoa app and pass it your mouse movements. Another way? Import pyobjc to access some of the OSX framework and access the mouse that way. (see the code from the first example for ideas). |
|||
|
|