I'm checking this program trying to just run 2 accounts (WoW) with each account residing on a different PC. Maybe I'm not getting something simple, but some of the hotkeys I want don't work. For example, I use a mod called GoGoMount which allows mounting through the use of a hotkey which I have set to SHIFT GRAVE. So I made this hotkey so that both accounts would mount at the same time:

Code:
 <hotkey LSHIFT GRAVE>
				<sendpc local>
						<sendwin World of Warcraft>
								<LSHIFT GRAVE>
				<sendpc 192.168.1.110>
						<sendwin World of Warcraft>
								<LSHIFT GRAVE>
It wouldn't work. I finally got it to work by making the hotkey in game and in HKN just GRAVE. It doesn't make sense to me why it wouldn't work.

So anyway, now I have 4 new hotkeys I want which aren't working.

Code:
<hotkey LSHIFT R>
	<sendpc 192.168.1.110>
	    <sendwin World of Warcraft>
	   	 <LALT 1>
<hotkey LSHIFT T>
	<sendpc 192.168.1.110>
	    <sendwin World of Warcraft>
	   	 <LALT 2>
<hotkey LSHIFT C>
	<sendpc 192.168.1.110>
	    <sendwin World of Warcraft>
	   	 <LALT 3>
<hotkey LSHIFT V>
	<sendpc 192.168.1.110>
	    <sendwin World of Warcraft>
	   	 <LALT 4>
When I looka t the output window for both PCs, it shows the hotkey coming through, but nothing happens in game.

Any suggestions?

*edit: Ok, after playing around with it some more it seems whenever I try to send the client PC a Shift, Alt, or Ctrl and another key it doesn't work, e.g. LSFHIT T, LCTRL R, LALT V. If I just change those to be T, R or V the hotkeys work. Is that the way this program is supposed to work?