Hey all
I'm having trouble with HotKeyNet not clicking in the right spot on the second screen using PiP
Example; I click on action bar 1 and my second wow clicks on action bar 3. Or I click on social and the second screen clicks on the scroll chat down button.
The closer I get to the middle of the screen, the better it lines up, Clicking on the character info button actually clicks the same place on both screens.

Both screens are the same aspect ratio (1600x900 and 640x360)

Here's the script I'm using:

Code:
//================================================================// SAMPLE SCRIPT FOR TWO WOW'S ON ONE PC 
//
// Instructions: Copy this entire script (all the blue writing
// on gray background including comments). Save it in a file. 
// Load it into HotkeyNet.
//
// Toggle the scroll lock key to turn hotkeys off and on. (You 
// can change this if you want, just like you can change 
// everything else with HotkeyNet.) 
//
// Requires HotkeyNet build 147 or higher.
// 
// For more info, go to www.hotkeynet.com 
//================================================================


//-----------------------------------------------------------
// DEFINE MAIL LABELS FOR SENDING KEY STROKES 
//-----------------------------------------------------------
<Label w1 Local SendWinM WoW1>
<Label w2 Local SendWinM WoW2>


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


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


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


<Hotkey NumLockOff Oem3 LButton, MButton, RButton, Button4, Button5>
   <SendLabel w1, w2> 
      <ClickMouse %TriggerMainKey%>


//================================================================
// PIP TOGGLING WITH WORLD OF WARCRAFT
//
// Requires HotkeyNet build 133 or higher.
//
// This sample shows how to place one WoW window
// inside another. (With video this is called
// picture in picture or PIP.) Each time you press
// F1 the two windows switch positions.
//================================================================


//----------------------------------------------------------------
// RENAME WINDOWS AND REMOVE BORDERS
//----------------------------------------------------------------
<Hotkey Ctrl R>
<RenameWin World WoW1>
<RemoveWinFrame>
<RenameWin World WoW2>
<RemoveWinFrame>


//----------------------------------------------------------------
// SET PIP CONFIGURATION
// Usage: <SetPip BigWindowName LittleWindowName>
// This command is called by <Hotkey F1> which is
// defined below.  <SetWinRedraw> isn't necessary but
// it makes the transition look neater.  You can
// remove it if it causes graphics glitches with 
// your arrangement of windows.
//----------------------------------------------------------------
<Command SetPip>
<TargetWin %2%>
   <SetWinSize 640 360>
   <SetWinPos  870 440>
<TargetWin %1%>
   <SetWinPos 0 0>
   <SetWinSize 1600 900>
<TargetWin %2%>
   <SetForegroundWin>
   <UpdateWin>
<TargetWin %1%>
   <SetWinRegion 870 440 640 360>
   <SetForegroundWin>


//----------------------------------------------------------------
// TOGGLE PIP CONFIG WITH HOTKEY
//----------------------------------------------------------------
<Hotkey PrintScreen>
<Toggle>
<SetPip WoW1 WoW2>
<Toggle>
<SetPip WoW2 WoW1>




//-----------------------------------------------------------
// SUBROUTINE TO LAUNCH AND RENAME A COPY OF WOW.
//-----------------------------------------------------------
<Command LaunchAndRename>
   <SendPC %1%>
  <Run %2%>
  <RenameTargetWin %3%>
  <RemoveWinFrame>
  <SetAffinity %4%>


//-----------------------------------------------------------
// PRESS <Ctrl L> TO LAUNCH AND RENAME YOUR WOW WINDOWS while 2 boxing
// Please configure the Path and processor afinitys correctly
//-----------------------------------------------------------
<Hotkey Ctrl L>
<LaunchAndRename Local "d:\wow1\wow.exe" WoW1 1>
<LaunchAndRename Local "d:\wow2\wow.exe" WoW2 2>


//================================================================
// END OF FILE
//================================================================