Re: Mouse manipulation

2006-01-31 Thread arkestra
I have found something that is similar to what I was looking for --the SendKeys module. But what I am realy looking for is the same thing, but for the mouse :) Thanks again. -- http://mail.python.org/mailman/listinfo/python-list

Re: Mouse manipulation

2006-01-31 Thread arkestra
I posted too soon. I installed win32all and the missing dll for 4.2 win32api.SetCursorPos((1,2)) does it! Thanks for the help. -- http://mail.python.org/mailman/listinfo/python-list

Re: Mouse manipulation

2006-01-30 Thread fraca7
arkestra a écrit : I am writing a script that interacts with the computer screen. Is there a module (either built in or add on) that would allow the script to manipulate the mouse pointer ? -- eg right click, move two pixels to the right, left click etc? Under Windows, see the SendInput

Re: Mouse manipulation

2006-01-30 Thread Rinzwind
arkestra schreef: I am writing a script that interacts with the computer screen. Is there a module (either built in or add on) that would allow the script to manipulate the mouse pointer ? -- eg right click, move two pixels to the right, left click etc? thank you. pygame is able to do

Re: Mouse manipulation

2006-01-30 Thread Peter Hansen
Rinzwind wrote: arkestra schreef: I am writing a script that interacts with the computer screen. Is there a module (either built in or add on) that would allow the script to manipulate the mouse pointer ? -- eg right click, move two pixels to the right, left click etc? thank you. pygame is

Mouse manipulation

2006-01-29 Thread arkestra
I am writing a script that interacts with the computer screen. Is there a module (either built in or add on) that would allow the script to manipulate the mouse pointer ? -- eg right click, move two pixels to the right, left click etc? thank you. --