Hello,
I am a first time Duel Boxer and am currently Trying to automate passing Hotkeys to my Everquest Client.

The following Code gets and recognizes the Window just fine and When I press the Button it recognizes the Keypress but does not pass it to the Client. Any Idea? NOTE : I used the Sticky AutoHotKey as a reference.

Code:
WinGet, eqid, List, EverQuest
~1:: 
KeyWait, 1, D
#IfWinActive, EverQuest
{
ControlSend,, 1, ahk_id %eqid1%
ControlSend,, 1, ahk_id %eqid2%
}
Return