When you normally press and hold down a key (example z) in Notepad (or even in this posting box on the forums), it will print one ''z' immediately, then after a fraction of a second it will continue printing 'z's (one by one, at a very quick rate).
Now I was expecting the same thing to happen with the code below, when I would press and hold 'b' or 'c'. Instead all three hotkeys (a, b, c), did the same thing (as I pressed and held): Print one letter immediately (in Notepad), and that's it. Repeatedly tapping worked fine (printed a letter with every tap).
Is there any way to do it (what I originally expected)? Am I missing something obvious?
- Code: Select all
<Command AutoExec>
<Label R0 Local SendWin R0>
<Run c:\WINDOWS\system32\notepad.exe>
<RenameTargetWin R0>
//1 normal key
<Hotkey a>
<sendLabel R0>
<Key a>
//2 combine down up
<Hotkey b>
<sendLabel R0>
<KeyDown b>
<HotkeyUp b>
<sendLabel R0>
<KeyUp b>
//3 movement hotkey
<MovementHotkey c>
<sendLabel R0>
<Key c>
Thanks in advance.