I have two pc's and 2 laptops. On one of the laptops I'm running two wow clients.

What I would like to do with HotKeyNet is passing through some keys to 4 instances of WoW and keep all keys falling through on my server pc.

To rename the two wow windows on a remote pc I use the next script. [code:1]
// renames wow windows on laptoprin
<hotkey ctrl R>
<sendpc xxx.xxx.xxx.xxx>
<rename "World of Warcraft" wow1>
<rename "World of Warcraft" wow2>
[/code:1]

Next I use to make sure the 1 key falls through to both wow's running on the laptop and that the 1 key works on the server.
[code:1]
<hotkey 1>
<sendpc local>
1
<sendpc 172.19.3.3>
<sendwin wow1>
1
<sendwin wow2>
1
[/code:1]

This does not work. I will get an error for the key that is sent to my local machine. Can I only make this work when I insert a named window? And I cannot use the keys outside the running wow instance?

WSASend() error
[OK]

When I use the following code
[code:1]
<hotkey 1>
<sendpc local>
<sendwin "World of Warcraft">
1
<sendpc 172.19.3.3>
<sendwin wow1>
1
<sendwin wow2>
1
[/code:1]

There is still the error for WSASend() error.

What am I doing wrong?

Another question. Can I bind a key to temporarily shutdown the keysending?