Dual Boxing on 1 PC with a 24" wide screen, using maximizer to place the two instances at the top and bottom of the screen and wondering if this kinda script/hotkey in AHK is cool to use with WoW. Hitting LAlt & Q moves mouse to my top window(clone) and brings it to the foreground. LShift & Q brings mouse back to bottom window(main) and brings it to the foreground. Also (in game)each key bind is set to a macro that switches up action bars and sets main to focus and follow clone, and visa verse. The Lalt & q / LShift & q can be any combo of keys. Ive gotten it to work at the login window. I have not yet logged in and used this yet, but have used the macros that switches follow ect. and they work just fine. This would save a few seconds and not require clicking on your clone to bring it forward. But seems like it could be trouble.

Code:
#IfWinActive, World of Warcraft
   ~LAlt & Q::
   WinActivate,ahk_id %idClone%
   MouseMove, X,Y
return

#IfWinActive, World of Warcraft
   ~LShift & Q::
   WinActivate,ahk_id %idMain%
   MouseMove, X,Y
return
Also was looking at specifying or making conditions that work to see if ahk_id %wowid1% is in foregound then switch to ahk_id %wowid2%, ahk_id %wowid3% ect.. and change position of mouse to that window(for the people that are boxing more then 2 on one PC) hope that made sense. Thanks in advance for any input.