프로그래밍언어/Python
마우스 클릭
부산딸랑이
2015. 11. 9. 06:56
import ctypes
import time
MOUSE_LEFTDOWN = 0x0002 # left button down
MOUSE_LEFTUP = 0x0004 # left button up
MOUSE_RIGHTDOWN = 0x0008 # right button down
MOUSE_RIGHTUP = 0x0010 # right button up
MOUSE_MIDDLEDOWN = 0x0020 # middle button down
MOUSE_MIDDLEUP = 0x0040 # middle button up
x = 1
y=540
ctypes.windll.user32.SetCursorPos(x,y), ctypes.windll.user32.mouse_event(MOUSE_LEFTDOWN ,0,0,0,0), ctypes.windll.user32.mouse_event(4,0,0,0,0)
ctypes.windll.user32.SetCursorPos(x,y), ctypes.windll.user32.mouse_event(MOUSE_LEFTUP ,0,0,0,0), ctypes.windll.user32.mouse_event(4,0,0,0,0)