프로그래밍언어/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)

'프로그래밍언어 > Python' 카테고리의 다른 글

파일 검색 하위폴더포함  (0) 2018.09.22
파이썬 해상도변경  (0) 2017.05.08
파이썬 쿠키유지  (0) 2015.02.01
파일모드  (0) 2014.11.25
CSV파일 읽고 쓰기  (0) 2014.11.25