Quote Originally Posted by mdsjohna View Post
I have the follow script running to broadcast key stroke for my brand new attempt at dual boxing. I am running into two problems. One is the keys I have listed here will go two times into chat. So when I press e it types as ee in the chat window.
I don't know ahk, but i ran into a similar problem for my linux script. The problem is that you have to make your script detecting the active wow client, and prevent broadcasting for that client. Cause what happens now is that you type a letter in client A, your ahk script detects a keypress and sends the keypress to all clients, i.e. also to the one where you just typed that letter.

in pseudo code:

detect wowwindows and rename/save them in a variable
detect keypress in wow window
if activewindow = a, broadcast keypress to bcde
elseif activewindow = b broadcastkeypress to acde
etc