Page 1 of 1

How to write a simple macro

Posted: Sun Apr 02, 2017 9:40 pm
by Videoman18
Hi, I'm having trouble figuring out how to write a simple macro for the Iris controls. I need it for GTA 5. Left shift + W. If anyone can help me figure out how to write a basic key macro it would be greatly appreciated.

Re: How to write a simple macro

Posted: Mon Apr 03, 2017 3:47 pm
by Zathras
Here you are...

Code: Select all

  <MACRO id="ShiftW">
    <MAIN>
      <KEYINPUT behaviour="PRESS" code="0x10"/>
      <WAIT time="100ms"/>
      <KEYINPUT behaviour="PRESS" code="0x57"/>
      <WAIT time="50"/>
      <KEYINPUT behaviour="RELEASE" code="0x57"/>
      <KEYINPUT behaviour="RELEASE" code="0x10"/>
    </MAIN>
  </MACRO>

Re: How to write a simple macro

Posted: Mon Apr 10, 2017 10:04 pm
by Videoman18
Thank you. So much!