码迷,mamicode.com
首页 > 编程语言 > 详细

python-鼠标宏

时间:2020-05-26 18:22:04      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:col   port   ==   als   time   mouse   put   lag   imp   

按下鼠标左键, 连击

按下鼠标右键, 停止

import win32api
import time
from pynput.mouse import Button, Controller
mouse = Controller()

while True:

    if (win32api.GetAsyncKeyState(0x01)&0x8000 > 0):
        flag = True
        while flag == True:
               mouse.click(Button.left, 1)
               time.sleep(0.1)
               if (win32api.GetAsyncKeyState(0x02)&0x8000 > 0):
                   flag = False
    else:
        pass

 

python-鼠标宏

标签:col   port   ==   als   time   mouse   put   lag   imp   

原文地址:https://www.cnblogs.com/strive-sun/p/12967022.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!