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?

link|improve this question

68% accept rate
5  
I have to ask: Why? – Stevoni Oct 7 '09 at 2:11
feedback

2 Answers

up vote 8 down vote accepted

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.

link|improve this answer
It's 15000 instead of 15 because it measures milliseconds but then it works brilliantly. – Christian Oct 7 '09 at 13:43
Whoops went a little too fast. Fixed :) – John T Oct 7 '09 at 14:32
feedback

http://www.autoitscript.com/autoit3/ may help.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.