Home » Questions » Computers [ Ask a new question ]

A mouseclick every 15 seconds

A mouseclick every 15 seconds

I want to create a macro that fires a right click every 15 seconds (30 clicks in total. What kind of software would you recommand for a macro like that?

Asked by: Guest | Views: 201
Total answers/comments: 2
Guest [Entry]

"AutoHotkey solution:

Loop 30
{
Send {LButton}
Sleep, 15000
}

If this task needs to be done in a browser, and your browser happens to be Firefox, check out the iMacros add-on."
Guest [Entry]

"Python3 with Pyautoigui module. The PyautoGui module has its own website explaining how you can do all of that and more. Its very useful. Just go through the category ""Mouse control and functions"".

pyautogui.readthedocs.io/en/latest/"