How to control mouse in Python, i.e. move it to certain position and click.

Thank you, Sasha

link|improve this question

33% accept rate
Do you nee to make the mouse movement in code without user intervention? – rahul Jul 25 '09 at 7:19
More information would be really helpful... – Gabriel Hurley Jul 25 '09 at 7:20
I wotk in Windows and i don't use any toolkit. I am really new to Python and I never worked with any GUI before. Where I start from? What mannual should I read? – Sasha Jul 25 '09 at 7:26
1  
why you need a python to do that, you can do that yourself? on a more serious note, why you need it, what is the purpose, a bit more details would be great – Anurag Uniyal Jul 25 '09 at 7:48
I recently learned Python on Windows. I started with the tutorials at docs.python.org which were very good. – Jeffrey Kemp Jul 25 '09 at 7:49
feedback

7 Answers

up vote 37 down vote accepted

Tested on WinXP, Python 2.6 after installing pywin32 (pywin32-214.win32-py2.6.exe in my case):

import win32api, win32con
def click(x,y):
    win32api.SetCursorPos((x,y))
    win32api.mouse_event(win32con.MOUSEEVENTF_LEFTDOWN,x,y,0,0)
    win32api.mouse_event(win32con.MOUSEEVENTF_LEFTUP,x,y,0,0)
click(10,10)
link|improve this answer
12  
click(240, 240) # Bam, you're upvoted. – eksortso Jul 25 '09 at 8:33
Thank you very much, It helps a lot!!!! – Sasha Jul 25 '09 at 9:23
Works perfectly. Nice. – Andrew Szeto Sep 11 '09 at 0:22
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

import win32api
import time
import math

for i in range(500):
    x = 500+math.sin(math.pi*i/100)*500
    y = 500+math.cos(i)*100
    win32api.SetCursorPos((x,y))
    time.sleep(.01)

a click using ctypes

import ctypes

# see http://msdn.microsoft.com/en-us/library/ms646260(VS.85).aspx for details
ctypes.windll.user32.SetCursorPos(100, 20)
ctypes.windll.user32.mouse_event(2, 0, 0, 0,0) # left down
ctypes.windll.user32.mouse_event(4, 0, 0, 0,0) # left up
link|improve this answer
1  
your ctypes code worked for me without any additional libraries! (python 2.6 on windows 7) – intrepion Feb 22 '10 at 2:36
it should be 4, not 3 in the last line – BlaXpirit May 20 '11 at 15:07
@BlaXpirit, thanks corrected. – Anurag Uniyal May 20 '11 at 17:13
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

from Xlib import X, display
d = display.Display()
s = d.screen()
root = s.root
root.warp_pointer(300,300)
d.sync()
link|improve this answer
This works in X. The OP works in windows. – Paul McMillan Jul 25 '09 at 7:47
A google for "Python controlling mouse movement" now finds this page, how meta. – Copas Feb 14 at 15:45
feedback

Check out the cross platform PyMouse: https://github.com/pepijndevos/PyMouse/

link|improve this answer
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.

link|improve this answer
I wotk in Windows and i don't use any toolkit. I am really new to Python and I never worked with any GUI before. Where I start from? – Sasha Jul 25 '09 at 7:25
3  
Learn python first. Then worry about moving the mouse. GUI and UI in general should come AFTER you've got a firm grasp of your set of tools. – Paul McMillan Jul 25 '09 at 7:28
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.

link|improve this answer
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!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.