Quote Originally Posted by Freddie View Post
The problem depends on your script.
Here's my script:

I've noticed it before with the Shift Z and Shift X toggles, but I don't use them very often (they're my Thunderstorm and Tremor/Grounding round robins for my shaman team), but the Ctrl F7 and Ctrl F8 are my 2-step macros for my mixed team so they get used constantly and have been the most noticeable failure point.

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 
//================================================================

//-----------------------------------------------------------
// PRESS CTRL R TO RENAME WOW'S IF YOU LAUNCH THEM MANUALLY 
//-----------------------------------------------------------
<Hotkey Ctrl R>
    <SendPC local>
        <RenameWin "World of Warcraft" WoW1> 
        <RenameWin "World of Warcraft" WoW2> 
        <RenameWin "World of Warcraft" WoW3> 
        <RenameWin "World of Warcraft" WoW4> 
        <RenameWin "World of Warcraft" WoW5> 

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

//-----------------------------------------------------------
// SUBROUTINE TO Position Windows for 5 boxing.
// You need to configure the positions as you like
//-----------------------------------------------------------
<Command ResizeAndPosition>
   <SendPC Local>
      <SendWinM %1%>
               <SetWinRect 0 0 1440 900>              
      <SendWinM %2%>
             <SetWinRect 1440 -124 640 512>  
      <SendWinM %3%>
             <SetWinRect 2080 -124 640 512> 
      <SendWinM %4%>
             <SetWinRect 1440 388 640 512> 
      <SendWinM %5%>
             <SetWinRect 2080 388 640 512>    

//-----------------------------------------------------------
// HOTKEY TO LAUNCH AND RENAME BOTH WOW'S.
//-----------------------------------------------------------
<Hotkey Alt Ctrl L>
<LaunchAndRename Local "C:\Users\Public\Games\WoW1\wow.exe" WoW1 password>
<LaunchAndRename Local "C:\Users\Public\Games\WoW2\wow.exe" WoW2 password>
<LaunchAndRename Local "C:\Users\Public\Games\WoW3\wow.exe" WoW3 password>
<LaunchAndRename Local "C:\Users\Public\Games\WoW4\wow.exe" WoW4 password>
<LaunchAndRename Local "C:\Users\Public\Games\WoW5\wow.exe" WoW5 password>
<ResizeAndPosition WoW1 WoW2 WoW3 WoW4 WoW5>

//-----------------------------------------------------------
// 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>

//-----------------------------------------------------------
// DEFINE HOTKEYS FOR ALL KEY COMBINATIONS THAT WILL GET
// SENT TO BOTH WOWS. ADD MORE KEY COMBO'S IF YOU WANT. 
//-----------------------------------------------------------
<KeyList MyList 0-9, Plus, Minus, F1-F6, Numpad1-Numpad9, NumpadPlus, NumpadMinus, Decimal, G, V>
<Hotkey MyList; Shift MyList; Alt MyList; Ctrl MyList>
<SendLabel w1, w2, w3, w4, w5>
<Key %Trigger%> 

<Hotkey Pause>
	<sendpc local>
	<ToggleHotkeys>

//-----------------------------------------------------------
// DEFINE MOVEMENT KEYS THAT WILL GET SENT TO BOTH WOW'S.
// ADD MORE KEYS IF YOU WANT. 
//-----------------------------------------------------------
<MovementHotkey up, down, left, right; Shift Space>
<SendLabel w1, w2, w3, w4, w5>
<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 Oem3 LButton, MButton, RButton>
   <SendLabel w1, w2, w3, w4, w5> 
      <ClickMouse %TriggerMainKey%>

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

//----------------------------------------------------------------
//Hotkey Toggles
//----------------------------------------------------------------
<Hotkey Shift X>
   <Toggle>
      <SendLabel w1> 
         <Key Shift 1>
      <SendLabel w5> 
         <Key Shift 2> 
   <Toggle>
      <SendLabel w2> 
         <Key Shift 1>
      <SendLabel w1> 
         <Key Shift 2>
   <Toggle>
      <SendLabel w3> 
         <Key Shift 1>
      <SendLabel w2> 
         <Key Shift 2>
   <Toggle>
      <SendLabel w4> 
         <Key Shift 1>
      <SendLabel w3> 
         <Key Shift 2>
   <Toggle>
      <SendLabel w5> 
         <Key Shift 1>
      <SendLabel w4> 
         <Key Shift 2>

<Hotkey Shift Z>
   <Toggle>
      <SendLabel w1> 
         <Key 1> 
   <Toggle>
      <SendLabel w2> 
         <Key 1>
   <Toggle>
      <SendLabel w3> 
         <Key 1>
   <Toggle>
      <SendLabel w4> 
         <Key 1>
   <Toggle>
      <SendLabel w5> 
         <Key 1>

<Hotkey Numpad0>
   <Toggle>
      <SendLabel w1> 
         <Key Numpad0> 
   <Toggle>
      <SendLabel w2> 
         <Key Numpad0>
   <Toggle>
      <SendLabel w3> 
         <Key Numpad0>
   <Toggle>
      <SendLabel w4> 
         <Key Numpad0>
   <Toggle>
      <SendLabel w5> 
         <Key Numpad0>
<Hotkey Ctrl F7>
   <Toggle>
      <SendLabel w1> 
         <Key 1> 
      <SendLabel w2> 
         <Key 1>
      <SendLabel w3> 
         <Key 1>
      <SendLabel w4> 
         <Key 1>
      <SendLabel w5> 
         <Key 1>
   <Toggle>
      <SendLabel w1> 
         <Key 1> 
      <SendLabel w2> 
         <Key 1>
      <SendLabel w3> 
         <Key 2>
      <SendLabel w4> 
         <Key 2>
      <SendLabel w5> 
         <Key 2>
<Hotkey Ctrl F8>
   <Toggle>
      <SendLabel w1> 
         <Key 2> 
      <SendLabel w2> 
         <Key 1>
      <SendLabel w3> 
         <Key 1>
      <SendLabel w4> 
         <Key 1>
      <SendLabel w5> 
         <Key 1>
   <Toggle>
      <SendLabel w1> 
         <Key 2> 
      <SendLabel w2> 
         <Key 1>
      <SendLabel w3> 
         <Key 2>
      <SendLabel w4> 
         <Key 2>
      <SendLabel w5> 
         <Key 2>