...[SNIP]
tl;dr: The sample code (http://www.hotkeynet.com/wow/wow-sample-two-on-two.html) works great, but I can't figure out how to get modifier keys to work with it.
With that I can send modifier keys over, (Shift + R was my test, worked! Yay!), but now ScrollLockOn doesn't seem to matter. My slave is going crazy right now opening the map and stuff as I type this as Scroll Lock is off.Code:<Hotkey ScrollLockOn A-Z, 0-9, Plus, Minus, F1-F12 except W, A, S, D, Q, E>
<PassThrough>
<SendLabel w2>
<Key %Trigger%>
<KeyList MyList A-Z, 0-9, Plus, Minus, F1-F12 except W, A, S, D, Q, E>
<Hotkey MyList; Shift MyList; Alt MyList; Ctrl MyList>
<PassThrough>
<SendLabel w2>
<Key %Trigger%>
It still doesn't care about Scroll Lock. :( Maybe an If block would do it?Code:<Hotkey ScrollLockOn A-Z, 0-9, Plus, Minus, F1-F12 except W, A, S, D, Q, E>
<PassThrough>
<SendLabel w2>
<Key %Trigger%>
<KeyList MyList A-Z, 0-9, Plus, Minus, F1-F12 except W, A, S, D, Q, E>
<Hotkey MyList; ScrollLockOn Shift MyList; ScrollLockOn Alt MyList; ScrollLockOn Ctrl MyList>
<PassThrough>
<SendLabel w2>
<Key %Trigger%>
Code:<Hotkey ScrollLockOn A-Z, 0-9, Plus, Minus, F1-F12 except W, A, S, D, Q, E>
<PassThrough>
<SendLabel w2>
<Key %Trigger%>
<KeyList ScrollLockOn A-Z, 0-9, Plus, Minus, F1-F12 except W, A, S, D, Q, E>
<Hotkey ScrollLockOn; Shift ScrollLockOn; Alt ScrollLockOn; Ctrl ScrollLockOn>
<PassThrough>
<SendLabel w2>
<Key %Trigger%>
Quote:
You must supply the name of at least one non-modifier key.