Page 1 of 1

Could someone write for me a simple macro?

Posted: Wed Feb 04, 2015 12:32 am
by killedbunny
I want the button x to be pressed after every 10 seconds infinitely. I tried doing this some time ago but I was unable to make it work. Could somebody please post the correct macro code for doing this action?

Re: Could someone write for me a simple macro?

Posted: Wed Feb 04, 2015 11:45 pm
by Matlo

Code: Select all

MACRO KEYDOWN o
KEYDOWN x
DELAY 50
KEYUP x
DELAY 10000
KEYDOWN o
Press o to trigger the macro.
Adjust the delays to your liking.

Re: Could someone write for me a simple macro?

Posted: Fri Feb 13, 2015 4:45 pm
by killedbunny
Thank you.