Bind multiple actions to one keystroke

Discussion of Inner Space

Moderators: Lavish Software Team, Moderators

Post Reply
Jedis
Non-Subscriber
Posts: 111
Joined: Thu Jul 08, 2004 9:49 pm

Bind multiple actions to one keystroke

Post by Jedis » Sat Jul 25, 2009 5:57 pm

This doesn't seem to be working for EQ1.

I want it to press the 0 key and then after that, do shift+alt+0. It's only doing part 1 and ignoring part 2.

Code: Select all

<?xml version="1.0" encoding="utf-8"?>
<Box xmlns&#58;xsi="http&#58;//www.w3.org/2001/XMLSchema-instance" xmlns&#58;xsd="http&#58;//www.w3.org/2001/XMLSchema">
  <ObjectType>System.Collections.Generic.List`1[ISBoxer_Toolkit.Configs.KeyMaps.MappedKeyAction]</ObjectType>
  <SerializedObject>&lt;?xml version="1.0" encoding="utf-8"?&gt;
&lt;ArrayOfMappedKeyAction xmlns&#58;xsi="http&#58;//www.w3.org/2001/XMLSchema-instance" xmlns&#58;xsd="http&#58;//www.w3.org/2001/XMLSchema"&gt;
  &lt;MappedKeyAction xsi&#58;type="Keystroke"&gt;
    &lt;Target&gt;2&lt;/Target&gt;
    &lt;Combo&gt;
      &lt;Combo&gt;0&lt;/Combo&gt;
      &lt;Modifiers&gt;None&lt;/Modifiers&gt;
      &lt;Key&gt;
        &lt;Key&gt;0&lt;/Key&gt;
        &lt;Code&gt;11&lt;/Code&gt;
      &lt;/Key&gt;
    &lt;/Combo&gt;
  &lt;/MappedKeyAction&gt;
  &lt;MappedKeyAction xsi&#58;type="Keystroke"&gt;
    &lt;Target&gt;2&lt;/Target&gt;
    &lt;Combo&gt;
      &lt;Combo&gt;Shift+Alt+0&lt;/Combo&gt;
      &lt;Modifiers&gt;Shift Alt&lt;/Modifiers&gt;
      &lt;Key&gt;
        &lt;Key&gt;0&lt;/Key&gt;
        &lt;Code&gt;11&lt;/Code&gt;
      &lt;/Key&gt;
    &lt;/Combo&gt;
  &lt;/MappedKeyAction&gt;
&lt;/ArrayOfMappedKeyAction&gt;</SerializedObject>
</Box>

Jedis
Non-Subscriber
Posts: 111
Joined: Thu Jul 08, 2004 9:49 pm

Post by Jedis » Sat Jul 25, 2009 5:59 pm

An edit button would be nice...

ctrl+f6 is the hotkey to start it and it triggers the 0 part but ignores the next part.

I had it working at one point so if I pressed ctrl+f6 once, it did part one and then if I pressed it again it did the next step. However, I want to do everything with one hotkey.

Any ideas?

Jedis
Non-Subscriber
Posts: 111
Joined: Thu Jul 08, 2004 9:49 pm

Post by Jedis » Sat Jul 25, 2009 6:01 pm

Keymap:

Code: Select all

<?xml version="1.0" encoding="utf-8"?>
<Box xmlns&#58;xsi="http&#58;//www.w3.org/2001/XMLSchema-instance" xmlns&#58;xsd="http&#58;//www.w3.org/2001/XMLSchema">
  <ObjectType>ISBoxer_Toolkit.Configs.KeyMaps.MappedKey</ObjectType>
  <SerializedObject>&lt;?xml version="1.0" encoding="utf-8"?&gt;
&lt;MappedKey xmlns&#58;xsi="http&#58;//www.w3.org/2001/XMLSchema-instance" xmlns&#58;xsd="http&#58;//www.w3.org/2001/XMLSchema"&gt;
  &lt;Name&gt;Epic Clicky&lt;/Name&gt;
  &lt;Combo&gt;
    &lt;Combo&gt;Ctrl+F6&lt;/Combo&gt;
  &lt;/Combo&gt;
  &lt;SendNextClickBlockLocal&gt;false&lt;/SendNextClickBlockLocal&gt;
  &lt;Steps&gt;
    &lt;Step&gt;
      &lt;Actions&gt;
        &lt;MappedKeyAction xsi&#58;type="Keystroke"&gt;
          &lt;Target&gt;2&lt;/Target&gt;
          &lt;Combo&gt;
            &lt;Combo&gt;0&lt;/Combo&gt;
            &lt;Modifiers&gt;None&lt;/Modifiers&gt;
            &lt;Key&gt;
              &lt;Key&gt;0&lt;/Key&gt;
              &lt;Code&gt;11&lt;/Code&gt;
            &lt;/Key&gt;
          &lt;/Combo&gt;
        &lt;/MappedKeyAction&gt;
        &lt;MappedKeyAction xsi&#58;type="Keystroke"&gt;
          &lt;Target&gt;2&lt;/Target&gt;
          &lt;Combo&gt;
            &lt;Combo&gt;Shift+Alt+0&lt;/Combo&gt;
            &lt;Modifiers&gt;Shift Alt&lt;/Modifiers&gt;
            &lt;Key&gt;
              &lt;Key&gt;0&lt;/Key&gt;
              &lt;Code&gt;11&lt;/Code&gt;
            &lt;/Key&gt;
          &lt;/Combo&gt;
        &lt;/MappedKeyAction&gt;
      &lt;/Actions&gt;
    &lt;/Step&gt;
  &lt;/Steps&gt;
&lt;/MappedKey&gt;</SerializedObject>
</Box>

Post Reply