Hi all,
I tried posting this message under another category, but someone suggested I post it here, so that's what I'm doing.
For those of you familiar with autohotkey, perhaps you can help me out.
I'm setting up an autohotkey sequence to press and release a series of keys. Here's the beginning of the script (the full script is much longer, but essentially involves more of the same).
`::
Send {1 down}
Sleep 500
Send {1 up}
Sleep 500
Send {2 down}
Sleep 500
Send {2 up}
Sleep 500
Send {3 down}
Sleep 500
Send {3 up}
When the ` is pressed in any document, it works fine, giving 1, 2, then 3. But when the ` key is pressed while in DCS (in the A10C), nothing happens. If I press 1, 2, and 3, the functions associated with pressing them take place normally (I've tried varying the functions, but it doesn't really matter what they are, there's no response).
Any suggestions?