First off I want to apologize for the late reply. My computer broke and I had to build a new one. Had to wait for my friend to work his magic on my old HDD to recover as much as he could. This is the code I used for HKN

Code:
 
//-----------------------------------------------------------
// TO RENAME WOW'S AND HIDDEN BOXES
//-----------------------------------------------------------


<Hotkey ScrollLockOn Ctrl R>
    <SendPC local>
        <RenameWin "World of Warcraft" HiddenDia>
        <RenameWin "World of Warcraft" HiddenDia>
        <RenameWin "World of Warcraft" WoW1>
        <RenameWin "World of Warcraft" WoW2>




 
//-----------------------------------------------------------
// LABELS FOR SENDING KEY STROKES
//-----------------------------------------------------------
<Label w1 Local SendWinM WoW1>
<Label w2 Local SendWinM WoW2>
 
//-----------------------------------------------------------
// DEFINED HOTKEYS THAT WILL GET SENT TO BOTH WOWS. 
//-----------------------------------------------------------
<Hotkey ScrollLockOn Q>
  <If ActiveWinIs WoW1>
    <SendLabel w2>
    <Key %Trigger%>
<If ActiveWinIs WoW2>
    <SendLabel w1>
    <Key %Trigger%>


<Hotkey ScrollLockOn E>
  <If ActiveWinIs WoW1>
    <SendLabel w2>
    <Key %Trigger%>
    <Key V>
<If ActiveWinIs WoW2>
    <SendLabel w1>
    <Key %Trigger%>
    <Key V>




<KeyList It A-D,F-P,S-Z, 0-9, Numpad0-Numpad9, Esc,Ctrl, Alt, Shift, Space, Plus, Minus, F1-F12 except W, A, S, D>


<HotKey ScrollLockOn Tab>
<If ActiveWinIs WoW1>
    <SendLabel w1>
    <Key %Trigger%>
<If ActiveWinIs WoW2>
    <SendLabel w2>
    <Key %Trigger%>
 
<Hotkey ScrollLockOn It>
<SendLabel w1, w2>
<Key %Trigger%>




<Hotkey ScrollLockOn Shift It; ScrollLockOn Ctrl It;>
<SendLabel w1, w2>
<Key %Trigger%>


//-----------------------------------------------------------
// DEFINED MOVEMENT KEYS
//-----------------------------------------------------------
<MovementHotkey ScrollLockOn W, A, S, D>
  <If ActiveWinIs WoW1>
    <SendLabel w1>
    <Key %Trigger%>
<If ActiveWinIs WoW2>
    <SendLabel w2>
    <Key %Trigger%>
 <MovementHotkey ScrollLockOn Left, Right>
  <If ActiveWinIs WoW1>
    <SendLabel w2>
    <Key %Trigger%>
  <If ActiveWinIs WoW2>
    <SendLabel w1>
    <Key %Trigger%>
//-----------------------------------------------------------
// BROADCAST MOUSE CLICKS. 
//-----------------------------------------------------------
<UseKeyAsModifier Oem3>
 
<Hotkey ScrollLockOn Ctrl MButton, LButton, RButton, Button4, Button5>
   <SendLabel w1, w2>
      <ClickMouse %TriggerMainKey%>
                <RestoreMousePos>