macro help

Need help? Ask here and someone will help
Post Reply
xiong
Posts: 18
Joined: Fri Sep 16, 2011 6:07 pm

macro help

Post by xiong »

is it possible to set left mouse click as the macro trigger for key r and then mouse button middle activating two time? hope this make sense.
User avatar
Matlo
Posts: 5768
Joined: Wed Jul 06, 2011 7:01 am
Location: France
Contact:

Re: macro help

Post by Matlo »

No. Only keyboard macros are supported at this time.
GIMX creator
xiong
Posts: 18
Joined: Fri Sep 16, 2011 6:07 pm

Re: macro help

Post by xiong »

I want to have "e" as macro for "r" and as soon as r is keyup button middle is keydown and then key

Code: Select all

#Defines the action that triggers the macro execution
MACRO e
#Performs a keystroke (key down + delay 50ms + key up)
KEY r
#Sleep 50ms
DELAY 50
#Perform a key down
KEYDOWN r
KEYUP r
KEY BUTTON_MIDDLE
KEYDOWN BUTTON_MIDDLE
#Sleep 50ms (minimum delay between KEYDOWN and KEYUP)
DELAY 51
#Perform a key up
KEYUP BUTTON_MIDDLE
KEY BUTTON_MIDDLE
KEYDOWN BUTTON_MIDDLE
#Sleep 50ms (minimum delay between KEYDOWN and KEYUP)
DELAY 52
#Perform a key up
KEYUP BUTTON_MIDDLE
User avatar
Matlo
Posts: 5768
Joined: Wed Jul 06, 2011 7:01 am
Location: France
Contact:

Re: macro help

Post by Matlo »

Only keyboard events can be generated at this time.

You should try to assign another keyboard key (for ex the t key) to the same action than the middle button.

Code: Select all

MACRO e
KEY r
KEY t
GIMX creator
xiong
Posts: 18
Joined: Fri Sep 16, 2011 6:07 pm

Re: macro help

Post by xiong »

yep that what i did after re reading your macro tutorial. :D
sly1986
Posts: 1
Joined: Wed May 02, 2012 1:33 pm

Re: macro help

Post by sly1986 »

Hello, I did not quite understand the procedure for creating macros, someone would make a very detailed tutorial for noobs like me? Someone could make a combo of any super street fighter 4 and set an example for me to get an idea of ​​how to proceed in raising my own combos?
Post Reply