Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #38388
| From | Terry Reedy <tjreedy@udel.edu> |
|---|---|
| Subject | Re: Moving mouse, Python3 and PyObjc |
| Date | 2013-02-07 19:51 -0500 |
| References | <da8d9786-1e39-44c0-80af-14dab2327074@googlegroups.com> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.1462.1360284710.2939.python-list@python.org> (permalink) |
On 2/7/2013 6:22 PM, joaofguiomar@gmail.com wrote:
>
> import objc
> def clickMouse(x, y, button): bndl = objc.loadBundle('CoreGraphics',
> globals(),
> '/System/Library/Frameworks/ApplicationServices.framework')
> objc.loadBundleFunctions(bndl, globals(), [('CGPostMouseEvent',
> 'v{CGPoint=ff}III')]) CGPostMouseEvent((x, y), 1, button, 1)
> CGPostMouseEvent((x, y), 1, button, 0)
> clickMouse(600,500, 1)
> this seems to send the mouse cursos to the top left corner, no matter
> what coords i send on clickMouse...
>
> Also, I just can't seem to install PyObjc and use it on Python3.3 ...
> always get No module named objc.
If the import fails, then the call to clickMouse should fail with
NameError, but you said that clickMouse executes, so it is hard to
determine what you have done and what does and does not work.
You need to post more information.
--
Terry Jan Reedy
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Moving mouse, Python3 and PyObjc joaofguiomar@gmail.com - 2013-02-07 15:22 -0800
Re: Moving mouse, Python3 and PyObjc Terry Reedy <tjreedy@udel.edu> - 2013-02-07 19:51 -0500
Re: Moving mouse, Python3 and PyObjc Dave Angel <davea@davea.name> - 2013-02-07 21:08 -0500
Re: Moving mouse, Python3 and PyObjc Oneill <joaofguiomar@gmail.com> - 2013-02-08 02:32 -0800
Re: Moving mouse, Python3 and PyObjc Dave Angel <davea@davea.name> - 2013-02-08 09:36 -0500
Re: Moving mouse, Python3 and PyObjc Oneill <joaofguiomar@gmail.com> - 2013-02-08 02:32 -0800
Re: Moving mouse, Python3 and PyObjc Oneill <joaofguiomar@gmail.com> - 2013-02-08 02:24 -0800
csiph-web