Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How does one control the mouse cursor in Python, i.e. move it to certain position and click, under Windows?

share|improve this question
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
show 1 more comment

5 Answers

up vote 60 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)
share|improve this answer
15  
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
2  
win32api.SetCursorPos((x,y)) is better to be replaced by win32api.mouse_event(win32con.MOUSEEVENTF_MOVE | win32con.MOUSEEVENTF_ABSOLUTE, int(x/SCREEN_WIDTH*65535.0), int(y/SCREEN_HEIGHT*65535.0)) in my experience for better integration with other application such as games. – Falcon May 31 '12 at 18:59
1  
@ObsessiveSSOℲ just take off the MOUSEEVENTF_ABSOLUTE flag. for details: msdn.microsoft.com/en-us/library/windows/desktop/… – Falcon Dec 28 '12 at 17:14
show 1 more comment

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
share|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

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

share|improve this answer

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()
share|improve this answer
1  
This works in X. The OP works in windows. – Paul McMillan Jul 25 '09 at 7:47
2  
A google for "Python controlling mouse movement" now finds this page, how meta. – Copas Feb 14 '12 at 15:45

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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