Hello,

I'm using two computers and two accounts and the only thing I can't get working is allowing movement keys to be successfully passed from WoW1 (computer I use) to WoW2 (second computer and account).

I was reading on the archived HotkeyNet forums that to allow movement keys of WASD I would need to remove them from the <HotKey> area using "except W, A, S, D" (I also added Q for my own purposes). Once you have that "except" statement you would go to the <MovementHotKey> section and then add the keys you want to use for movement, so I added "W, A, S, D". The WoW2 does not respond to W, A, S, D when I do this. The most I've gotten is when WoW2 is on a mount and I press W, A, S, or D the mount starts it's animation over (like breathing up and down animation) but the character never moves.

I'd also like to note that the default <MovementHotKey> up, down, left, or right does not work on WoW2 either. I've also checked the output in the "Last Key Press" area to make sure my keyboard/computer is registering what the script thinks it is and everything checks out.

Below you will find the code I'm using.

//-----------------------------------------------------------
// DEFINE MAIL LABELS FOR SENDING KEY STROKES
//-----------------------------------------------------------
<Label w1 Local SendWin "World of Warcraft">
<Label w2 XXX.XXX.XXX.XXX SendWin "World of Warcraft">


//-----------------------------------------------------------
// DEFINE HOTKEYS FOR ALL KEY COMBINATIONS THAT WILL GET
// SENT TO BOTH WOWS. ADD MORE KEY COMBO'S IF YOU WANT.
//-----------------------------------------------------------
<Hotkey ScrollLockOn A-Z, 0-9, Plus, Minus, F1-F12 except W, A, S, D, Q>
<PassThrough>
<SendLabel w2>
<Key %Trigger%>


//-----------------------------------------------------------
// DEFINE MOVEMENT KEYS THAT WILL GET SENT TO BOTH WOW'S.
// ADD MORE KEYS IF YOU WANT.
//-----------------------------------------------------------
<MovementHotkey ScrollLockOn up, down, left, right, W, A, S, D>
<SendLabel w2>
<Key %Trigger%>




//-----------------------------------------------------------
// BROADCAST MOUSE CLICKS. REQUIRES ADJUSTMENT OF
// CLICKMOUSE DELAYS ON SETTINGS PANEL. HOLD DOWN OEM3
// (ON U.S. KEYBOARDS, THAT'S THE SQUIGGLE KEY IN UPPPER
// LEFT CORNER) WHEN YOU WANT TO BROADCAST.
//-----------------------------------------------------------
<UseKeyAsModifier Oem3>


<Hotkey ScrollLockOn Oem3 LButton, MButton, RButton, Button4, Button5>
<PassThrough>
<SendLabel w2>
<ClickMouse %TriggerMainKey%>