每15秒点击一次鼠标


2

我想创建一个每15秒触发一次右键单击的宏(总共30次点击。 你会为这样的宏推荐什么样的软件?


5
我不得不问:为什么?
Stevoni

Answers:


8

AutoHotkey的 解:

Loop 30
{
    Send {LButton}
    Sleep, 15000
}

如果此任务需要在浏览器中完成,并且您的浏览器恰好是Firefox,请查看 iMacros的 添加在。


它是15000而不是15,因为它测量毫秒,但它的工作非常出色。
Christian

哎呀有点太快了。固定:)
John T

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.