Re: Mouse control

2019-10-12 Thread David L Neil via Python-list
On 7/10/19 4:11 AM, Alexander Vergun wrote: Hello all, I am coding a voice assistant under Python 3.7, Windows 7. I am using PYcharm and libraries such as PYSimpleGUI, mouse, keyboard etc. Everything works except for the mouse control and probably keyboard, the problem is following, when I

Re: Mouse control

2019-10-07 Thread David L Neil via Python-list
On 7/10/19 4:11 AM, Alexander Vergun wrote: I am coding a voice assistant under Python 3.7, Windows 7. I am using PYcharm and libraries such as PYSimpleGUI, mouse, keyboard etc. Everything works except for the mouse control and probably keyboard, the problem is following, when I run the script

Mouse control

2019-10-06 Thread Alexander Vergun
Hello all, I am coding a voice assistant under Python 3.7, Windows 7. I am using PYcharm and libraries such as PYSimpleGUI, mouse, keyboard etc.  Everything works except for the mouse control and probably keyboard, the problem is following, when I run the script under PYcharm, the script can

Re: Mouse control with ctypes in OS X

2007-08-20 Thread Robert Kern
Robert Kern wrote: > Googling around a bit more, however, I see that the Quartz Event Services is > documented and provides similar functionality. The DarwiinRemote project has a > mouse emulation mode for the Nintendo Wii controller that uses this API. It's > only available in OSX 10.4, however.

Re: Mouse control with ctypes in OS X

2007-08-20 Thread Robert Kern
Paul McNett wrote: > Niklas Ottosson wrote: >> I need to get hold of the mouse position and also need to be able to >> change it. In windows I have used ctypes.windll.user32.getCursorPos() >> and ctypes.windll.user32.setCursorPos() with great success in my program >> but now I also need to make

Re: Mouse control with ctypes in OS X

2007-08-20 Thread Paul McNett
Niklas Ottosson wrote: > I need to get hold of the mouse position and also need to be able to > change it. In windows I have used ctypes.windll.user32.getCursorPos() > and ctypes.windll.user32.setCursorPos() with great success in my program > but now I also need to make a Mac OS X version of the

Mouse control with ctypes in OS X

2007-08-20 Thread Niklas Ottosson
Hi all I need to get hold of the mouse position and also need to be able to change it. In windows I have used ctypes.windll.user32.getCursorPos() and ctypes.windll.user32.setCursorPos() with great success in my program but now I also need to make a Mac OS X version of the program. Does anyone

Re: Mouse control in OS X

2006-04-20 Thread Jay Parlar
On Apr 20, 2006, at 1:22 PM, Mateo wrote: > I've played around with pygame, and it seems to have much of what I > need. Still, is there any way to initiate a mouse click from Python? > > Thanks. > In OS X, you'll probably need PyObjC. I've never had a chance to try it myself, but if any package

Re: Mouse control in OS X

2006-04-20 Thread Mateo
I've played around with pygame, and it seems to have much of what I need. Still, is there any way to initiate a mouse click from Python? Thanks. -- http://mail.python.org/mailman/listinfo/python-list

Mouse control in OS X

2006-04-18 Thread Mateo
Hi, I'd like to be able to use python to control the mouse cursor in OS X. ( i.e. programmatically move it around, click things, etc...) Anyone know the best way to do it on a Mac? Thanks. -- http://mail.python.org/mailman/listinfo/python-list