예제 #1
0
 def killClick(self, x1, y1, x2, y2):
     Cursor.Position = Point(x1, y1)
     User32.mouse_event(0x202, 0, 0, 0, 0)
     Cursor.Position = Point(x2, y2)
     User32.mouse_event(0x204, 0, 0, 0, 0)
예제 #2
0
파일: main.py 프로젝트: ptmono/anipang_b
 def killClick(self, x1, y1, x2, y2):
     Cursor.Position = Point(x1, y1)
     User32.mouse_event(0x202, 0, 0, 0, 0)
     Cursor.Position = Point(x2, y2)
     User32.mouse_event(0x204, 0, 0, 0, 0)
예제 #3
0
 def click(self, x, y):
     info = 0
     Cursor.Position = Point(x, y)
     User32.mouse_event(0x202, 0, 0, 0, info)
     User32.mouse_event(0x204, 0, 0, 0, info)
예제 #4
0
파일: main.py 프로젝트: ptmono/anipang_b
 def click(self, x, y):
     info = 0
     Cursor.Position = Point(x, y)
     User32.mouse_event(0x202, 0, 0, 0, info)
     User32.mouse_event(0x204, 0, 0, 0, info)