Your CTRL+R hotkey does two different things. Neither of which actually launch the game, so the expectation is you load up the game yourself on both PC's, and then press CTRL+R, but due to the double binding on it, I suspect it is broken.
Printable View
Your CTRL+R hotkey does two different things. Neither of which actually launch the game, so the expectation is you load up the game yourself on both PC's, and then press CTRL+R, but due to the double binding on it, I suspect it is broken.
I think I see what you mean. I changed it and it still doesn't work.
HKN still is connected and still no errors.
Code://================================================================
//-----------------------------------------------------------
// SUBROUTINE TO LAUNCH A COPY OF WOW.
//-----------------------------------------------------------
<Command Launch>
<SendPC %1%>
<Run "C:\Program Files (x86)\World of Warcraft\_retail_\WoW.exe">
<Wait 1000>
<RenameTargetWin wow%2%_hidden_dialog>
<WaitForWin "World of Warcraft" 5000>
<WaitForWinEnabled 5000>
//-----------------------------------------------------------
// HOTKEY TO LAUNCH BOTH WOW'S.
//-----------------------------------------------------------
<Hotkey ScrollLockOn Alt Ctrl L>
<SendPC local>
<RenameWin "World of Warcraft" WoWb>
<RenameWin "World of Warcraft" WoW2>
<SendPC "10.0.0.234">
<RenameWin "World of Warcraft" WoWa>
<RenameWin "World of Warcraft" WoW1>
//-----------------------------------------------------------
// DEFINE MAIL LABELS FOR SENDING KEY STROKES
//-----------------------------------------------------------
<Label w1 Local SendWin WoW1>
<Label w2 10.0.0.234 SendWin WoW2>
//-----------------------------------------------------------
// DEFINE HOTKEYS FOR ALL KEY COMBINATIONS THAT WILL GET
// SENT TO BOTH WOWS. ADD MORE KEY COMBO'S IF YOU WANT.
//-----------------------------------------------------------
<Hotkey ScrollLockOn A-Z, 0-9, Plus, Minus, F1-F12 except W, A, S, D, Q, E>
<PassThrough>
<SendLabel 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>
<PassThrough>
<SendLabel w2>
<Key %Trigger%>
//-----------------------------------------------------------
// BROADCAST MOUSE CLICKS. REQUIRES ADJUSTMENT OF
// CLICKMOUSE DELAYS ON SETTINGS PANEL. HOLD DOWN OEM3
// (ON U.S. KEYBOARDS, THAT'S THE SQUIGGLE KEY IN UPPPER
// LEFT CORNER) WHEN YOU WANT TO BROADCAST.
//-----------------------------------------------------------
<UseKeyAsModifier Oem3>
<Hotkey ScrollLockOn Oem3 LButton, MButton, RButton, Button4, Button5>
<PassThrough>
<SendLabel w2>
<ClickMouse %TriggerMainKey%>
You were missing the (x86) before which was my point, good you corrected it, but
You have defined Launch but you aren't using it
also it seems you have 2 windows per computer now (in your Ctrl-R hotkey) ? is that what you want ?
what exact sequence of things you do starting from nothing is started but hotknet on both computers ?
in general when reporting a problem, please be precise with what are the symptoms (define "no luck" and what isn't working) ?
once you get to actually launch using hotkeynet instead of manually,
try a simple step first like if the login screen work as in if you type 1 in the email field does 1 show up on both (and if not, what are the messages, including did the RenameTargetWin worked succesfully)
in short, do something like:
and try alt-ctrl-l and see it does launch wow on both and after that hitting 1 sends it to bothCode:<Hotkey ScrollLockOn Alt Ctrl L>
<Launch local>
<Launch "10.0.0.234">
So I made changes you suggested. I also removed the rename field and took it back to almost the pure sample sheet that HKN has online. I kept the latest changes as I think I was adding to much.
HKN works as I can see it broadcast to the other computer from with HKN. No errors or anything.
I start HKN on desktop (server) then on laptop (client)
I start WOW on desktop manually on the server first then on the client
I manually login into each WOW login screens Server first, then client
I hit scroll lock button and then press one of the only keys I use when I play. ( key 1 through key = )
I read on another post about renaming the wow windows to avoid the hidden window. Although some have got it to work it and I'm sure the code is good, it didn't for me. That is the reason why I removed them and went to basics starter script.. I did as you suggested though and tried to start both server and client WOW's with Alt Ctrl L. It did launch both server and client
I just logged into both and so far i'm working as it should. I can't believe it and almost gave up on it again. Hopefully it won't be short lived.
My script I used
Thank you for all your time. You put in the extra effort to help a faceless member of this Forum and that is so cool. If I can in someway I'll play it forward on a subject that i know at least. =)Code://================================================================
// SAMPLE SCRIPT FOR TWO WOW'S ON TWO PC'S
// (one account on each machine)
//
// 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
//================================================================
//-----------------------------------------------------------
// SUBROUTINE TO LAUNCH A COPY OF WOW.
//-----------------------------------------------------------
<Command Launch>
<SendPC %1%>
<Run "C:\Program Files (x86)\World of Warcraft\_retail_\WoW.exe"">
<Wait 1000>
<RenameTargetWin wow%2%_hidden_dialog>
<WaitForWin "World of Warcraft" 5000>
<WaitForWinEnabled 5000>
//-----------------------------------------------------------
// HOTKEY TO LAUNCH BOTH WOW'S.
//-----------------------------------------------------------
<Hotkey ScrollLockOn Alt Ctrl L>
<Launch Local>
<Launch 10.0.0.234>
//-----------------------------------------------------------
// DEFINE MAIL LABELS FOR SENDING KEY STROKES
//-----------------------------------------------------------
<Label w1 Local SendWin "World of Warcraft">
<Label w2 10.0.0.234 SendWin "World of Warcraft">
//-----------------------------------------------------------
// DEFINE HOTKEYS FOR ALL KEY COMBINATIONS THAT WILL GET
// SENT TO BOTH WOWS. ADD MORE KEY COMBO'S IF YOU WANT.
//-----------------------------------------------------------
<Hotkey ScrollLockOn A-Z, 0-9, Plus, Minus, F1-F12 except W, A, S, D, Q, E>
<PassThrough>
<SendLabel 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>
<PassThrough>
<SendLabel w2>
<Key %Trigger%>
//-----------------------------------------------------------
// BROADCAST MOUSE CLICKS. REQUIRES ADJUSTMENT OF
// CLICKMOUSE DELAYS ON SETTINGS PANEL. HOLD DOWN OEM3
// (ON U.S. KEYBOARDS, THAT'S THE SQUIGGLE KEY IN UPPPER
// LEFT CORNER) WHEN YOU WANT TO BROADCAST.
//-----------------------------------------------------------
<UseKeyAsModifier Oem3>
<Hotkey ScrollLockOn Oem3 LButton, MButton, RButton, Button4, Button5>
<PassThrough>
<SendLabel w2>
<ClickMouse %TriggerMainKey%>