0

I want my mouse to rapidly autoclick when I hold the left mouse button, how can I do this? I have searched for hours, I didn't find anything! Thanks in advance.

EDIT: P.S.: I want the rapid click to stop as soon as I release the left button.

4

2 回答 2

0

你能稍微具体一点吗?您是否正在尝试编写仅查找自动点击器应用程序的程序?

如果您只是在寻找应用程序,那么网上有很多可用的。只是谷歌。一个这样的应用程序可能是:http ://auto-clicker-by-shocker.soft32.com/

如果您正在尝试编写程序,它也很简单,但是您需要让我知道您使用的是什么语言,如果它是 OOP,我应该能够提供帮助。

于 2013-10-05T17:33:40.833 回答
0

没关系,我做了一个 AutoHotKey 脚本:

Suspend, On

~XButton2::Suspend, Toggle

~LButton::
    While GetKeyState("LButton", "P"){
        Click
        Sleep 50  ;  milliseconds
    }
return
于 2013-10-06T11:06:36.230 回答