Hi, I'm new to HKN and am using the sample two on one script. Did some tweaking of it, but now am trying to figure out how to have mouse mapping for my 4 and 5 buttons on my mouse, as well as the 4 and 5 buttons on the mouse with shift as a modifier. Having a little trouble with my script. What happens is sometimes when I press shift button4, it will instead activate button4. Any HotKeyNet script gurus have any idea what I'm doing wrong? I'm using my NumLock as my hotkey, as my keyboard has scroll lock as a seperate mode button.

//================================================== ==============
// 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 NumLockOn 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 Local>
<Run "c:\Mick\World of Warcraft\Wow.exe">
<RenameTargetWin WoW1>
<Command LaunchAndRename>
<SendPC Local>
<Run "c:\Mick\World of Warcraft\Wow.exe">
<RenameTargetWin WoW2>
//-----------------------------------------------------------
// HOTKEY TO LAUNCH AND RENAME BOTH WOW'S.
//-----------------------------------------------------------
<Hotkey NumLockOn Alt Ctrl L>
<LaunchAndRename Local "c:\Mick\World of Warcraft\Wow.exe" WoW1>
<LaunchAndRename Local "c:\Mick\World of Warcraft\Wow.exe" 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 NumLockOn A-Z, 0-9, Multiply, Minus, Backspace, Enter, Oem2, Oem5, Oem6, NumpadEnter, F1-F12, Esc, 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 NumLockOn 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.
//-----------------------------------------------------------
<Hotkey NumLockOn Button4, Button5>
<SendLabel w1, w2>
<ClickMouse %TriggerMainKey%>

<Hotkey NumLockOn Shift Button4, Button5>
<SendLabel w1, w2>
<KeyDown Shift>
<ClickMouse %TriggerMainKey%>
<KeyUp Shift>


Also, it won't auto run or anything, but I don't really care too much about that, as I play with two monitors on one PC. I just more want to be able to translate key and mouse clicks to both programs. Was using KeyClone, but have been having problems with the mouse-mapping and the fact that it won't accept mouse clicks in the set up sometimes, but I am waiting for word about that problem, so I'm using HKN until then, but it seems to mostly do all I need it to do. Thanks again for any help =)