Could someone write for me a simple macro?

Need help? Ask here and someone will help
Post Reply
killedbunny
Posts: 2
Joined: Wed Feb 04, 2015 12:24 am

Could someone write for me a simple macro?

Post 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?
User avatar
Matlo
Posts: 5764
Joined: Wed Jul 06, 2011 7:01 am
Location: France
Contact:

Re: Could someone write for me a simple macro?

Post 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.
GIMX creator
killedbunny
Posts: 2
Joined: Wed Feb 04, 2015 12:24 am

Re: Could someone write for me a simple macro?

Post by killedbunny »

Thank you.
Post Reply