I've been using HotKeyNet for a little while now and it works very well for me. But I decided to try and get a FTL setup going between my 2 computers. I also use Input Director to allow me to control the second computer screen as if I had dual monitors.

The problem that I am having is I cannot get anything to transmit to the master if the slave system has focus. Transmitting to the slave when the master has focus is no problem. Am I missing something or is this just not possible? I've tried various sample FTL scripts and nothing has worked yet. If I could just get it to work once then I would be able to continue with my setup.

Here is a test script I tried and it sends from the master to the slave but not from the slave to the master.
Code:
<Label w1 192.168.0.110 SendWinM WoW1>
<Label w2 192.168.0.109 SendWinM WoW2>

<Hotkey ScrollLockOn Alt Ctrl L>
    <SendPC 192.168.0.110>
    <Run "D:\Program Files\World of Warcraft\WoW.exe">
    <RenameWin World WoW1>
    <wait 10000>
    <SendWinM WoW1>
        <text "Account">
        <wait 500>
        <key Tab>
        <wait 500>
        <text "Pass">
        <wait 100>
        <key Enter>
    <SendPC 192.168.0.109>
    <Run "D:\Program Files\World of Warcraft\WoW.exe">
    <RenameWin World WoW2>
    <wait 10000>
    <SendWinM WoW2>
        <text "Account">
        <wait 500>
        <key Tab>
        <wait 500>
        <text "Pass">
        <wait 100>
        <key Enter>

<Hotkey Numpad1>
    <If ActiveWinIs WoW1>
        <SendLabel w2>
        <Key Numpad1>
    <Else If ActiveWinIs WoW2>
        <SendLabel w1>
        <Key Numpad1>