| View previous topic :: View next topic |
| Author |
Message |
crxvfr
Joined: 10 Mar 2006 Posts: 46
|
Posted: Thu May 15, 2008 9:43 pm Post subject: Sending a combination of keys |
|
|
I see lots of examples for key combinations for hotkeys but not for sending. Does it work the same way?
I hate to ask such a stupid question. It really makes me mad because I've come across this before but forgot where I found the answer.
How do I SEND Control N
I've tried:
send,{CTRLDOWN}N{CTRLUP}
send,^N
(I'm working with point of sale program and I think its interrupting/intercepting my sent keystrokes.)
text to aid search:
send a combination of keys
sending a combination of keys
send two keys at the same time
send a key combination
sending a key combination |
|
| Back to top |
|
 |
Rhys
Joined: 17 Apr 2007 Posts: 701 Location: Florida
|
Posted: Thu May 15, 2008 9:58 pm Post subject: |
|
|
| Code: | | send,{CtrlDown}n{CtrlUp} | Control + capital 'n' doesn't work (I believe it's seen as CTRL+Shift+n). _________________ [Join IRC!]
 |
|
| Back to top |
|
 |
k3ph
Joined: 21 Jul 2006 Posts: 99
|
Posted: Thu May 15, 2008 11:24 pm Post subject: Re: Sending a combination of keys |
|
|
| crxvfr wrote: |
How do I SEND Control N
I've tried:
send,{CTRLDOWN}N{CTRLUP}
send,^N |
correct:
| Code: | | send {CTRL DOWN}N{CTRL UP} |
|
|
| Back to top |
|
 |
Rhys
Joined: 17 Apr 2007 Posts: 701 Location: Florida
|
Posted: Thu May 15, 2008 11:36 pm Post subject: |
|
|
I'm almost positive that CtrlDown and Ctrl Down are interchangeable... _________________ [Join IRC!]
 |
|
| Back to top |
|
 |
|