Hi,
first of all sry for my english, I´m German and haven´t communicated in english for years.

I´m working on a German LapTop using Win 7 - 64 bit .
I installed HotKeyNet to work on 1 machine and want to use 2 instances of WoW .
I already changed the example - script to my needs (adjusting directory and modifierkey - settings). Broadcasting of keys works fine (upper right window tells me what key I pressed and it matches the actual key pressed).

It launches the 2 instances of WoW but the problem: it doesn´t rename the windows at all.

Below you´ll find the error-message I get:
From this pc: <LaunchAndRename Local WoW1><LaunchAndRename Local WoW2>
From this pc: <Run "C:\Program Files (x86)\World of Warcraft\WoW.exe"><RenameTargetWin WoW1>
<Run "C:\Program Files (x86)\World of Warcraft\WoW.exe"> completed: Program started.. Window could not be found
<RenameTargetWin WoW1> failed: No window is targeted.
From this pc: <Run "C:\Program Files (x86)\World of Warcraft\WoW.exe"><RenameTargetWin WoW2>
<Run "C:\Program Files (x86)\World of Warcraft\WoW.exe"> completed: Program started.. Window could not be found
<RenameTargetWin WoW2> failed: No window is targeted.

Here is the script I load:

//================================================== ==============
// 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 CapsLockOn Ctrl R>
<SendPC local>
<RenameWin "World of Warcraft" WoW1>
<RenameWin "World of Warcraft" WoW2>
//-----------------------------------------------------------
// SUBROUTINE TO LAUNCH AND RENAME A COPY OF WOW.
//-----------------------------------------------------------
<Command LaunchAndRename>
<SendPC %1%>
<Run "C:\Program Files (x86)\World of Warcraft\WoW.exe">
<RenameTargetWin %2%>
//-----------------------------------------------------------
// HOTKEY TO LAUNCH AND RENAME BOTH WOW'S.
//-----------------------------------------------------------
<Hotkey CapsLockOn Alt Ctrl L>
<LaunchAndRename Local WoW1>
<LaunchAndRename Local WoW2>
//-----------------------------------------------------------
// 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 CapsLockOn 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 ScrollLockOn 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 CapsLockOn Oem3 LButton, MButton, RButton, Button4, Button5>
<SendLabel w1, w2>
<ClickMouse %TriggerMainKey%>

Thx for your help in advanceThomas