Hey all.
First: awesome tutorial.

Second: I am having an issue with the reseizeandposition function
Launchandrename opens them all just fine.
Then they resize and get rid of the border.
But then they all resize to 1920x1200 and I don't have pips.
I can switch between them, but they all are simply full screen without the pips.

I am using Windows 7 x64.
Here's my script:
Code:
<Command ResizeAndPosition>
   <SendPC Local>
       <SendWin %1%>
          <SetWinSize 1920 1200>
          <SetWinPos 0 0>
          <SetWinRegion 160 1620 300 200>
          <SetWinRegion 560 1620 300 200>
          <SetWinRegion 960 1620 300 200>
          <SetWinRegion 1360 1620 300 200>
      <SendWinM %2%>
          <SetWinSize 300 200>
          <SetWinPos 160 1620>     
      <SendWinM %3%>
          <SetWinSize 300 200>
          <SetWinPos 560 1620>     
      <SendWinM %4%>
          <SetWinSize 960 1620>
          <SetWinPos 1920 0>     
     <SendWinM %5%>
           <SetWinSize 1460 1620>
           <SetWinPos 1920 512>
//-----------------------------------------------------------
// SUBROUTINE TO LAUNCH AND RENAME A COPY OF WOW.
//-----------------------------------------------------------
<Command LaunchAndRename>
   <SendPC %1%>
  <Run %2%>
  <RenameTargetWin %3%>
  <RemoveWinFrame>
  <SetAffinity %4%>


//-----------------------------------------------------------
// DEFINE MAIL LABELS FOR SENDING KEY STROKES.
//-----------------------------------------------------------
<Label w1 Local SendWinM WoW1>
<Label w2 Local SendWinM WoW2>
<Label w3 Local SendWinM WoW3>
<Label w4 Local SendWinM WoW4>
<Label w5 Local SendWinM WoW5>
//-----------------------------------------------------------
// HOTKEY TO LAUNCH AND RENAME YOUR WOW WINDOWS while 5 boxing
// Please configure the Path and processor afinitys correctly
//-----------------------------------------------------------
<Hotkey Alt Ctrl L>
<LaunchAndRename Local "C:\Users\Public\Games\World of Warcraft\wow.exe" WoW1 1>
<LaunchAndRename Local "C:\Users\Public\Games\World of Warcraft - Copy\wow.exe" WoW2 1>
<LaunchAndRename Local "C:\Users\Public\Games\World of Warcraft - Copy\wow.exe" WoW3 1>
<LaunchAndRename Local "C:\Users\Public\Games\World of Warcraft - Copy\wow.exe" WoW4 1>
<LaunchAndRename Local "C:\Users\Public\Games\World of Warcraft - Copy\wow.exe" WoW5 1>
<ResizeAndPosition WoW1 WoW2 WoW3 WoW4 WoW5>

<MovementHotkey up, down, left, right>
       	<SendLabel w1, w2, w3, w4, w5>
        	<Key %Trigger%>
<hotkey pause>
	<sendpc local>
	<ToggleHotkeys>
<KeyList MyList A-Z, 0-9, Enter, Tab, Oem4, Space, Comma, Oem6 except W, A, S, D, Q, E, L>

<Hotkey MyList; Shift MyList; Alt MyList; Ctrl MyList>
//<Hotkey AllMainKeys; Shift AllMainKeys; Ctrl AllMainKeys; Alt AllMainKeys>
  	 <SendLabel w1, w2, w3, w4, w5>
   	<Key %Trigger%>


//----------------------------------------------------------------
//Window Switching
//----------------------------------------------------------------
<Hotkey F1>
   <ResizeAndPosition WoW1 WoW2 WoW3 WoW4 WoW5>
<Hotkey F2>
   <ResizeAndPosition WoW2 WoW1 WoW3 WoW4 WoW5>
<Hotkey F3>
   <ResizeAndPosition WoW3 WoW2 WoW1 WoW4 WoW5>
<Hotkey F4>
   <ResizeAndPosition WoW4 WoW2 WoW3 WoW1 WoW5>
<Hotkey F5>
   <ResizeAndPosition WoW5 WoW2 WoW3 WoW4 WoW1>