How to write a simple macro

Post Reply
Videoman18
Posts: 3
Joined: Sun Apr 02, 2017 9:34 pm
Location: USA

How to write a simple macro

Post 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.
Zathras
Posts: 68
Joined: Thu May 21, 2015 4:09 pm
Location: NY

Re: How to write a simple macro

Post 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>
Videoman18
Posts: 3
Joined: Sun Apr 02, 2017 9:34 pm
Location: USA

Re: How to write a simple macro

Post by Videoman18 »

Thank you. So much!
Post Reply