Page 1 of 1
macro help
Posted: Sun Apr 15, 2012 6:26 pm
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.
Re: macro help
Posted: Sun Apr 15, 2012 7:25 pm
by Matlo
No. Only keyboard macros are supported at this time.
Re: macro help
Posted: Mon Apr 16, 2012 9:33 am
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
Re: macro help
Posted: Mon Apr 16, 2012 10:01 am
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.
Re: macro help
Posted: Mon Apr 16, 2012 1:25 pm
by xiong
yep that what i did after re reading your macro tutorial.

Re: macro help
Posted: Sat May 12, 2012 4:47 pm
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?