AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Sending a combination of keys

 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help
View previous topic :: View next topic  
Author Message
crxvfr



Joined: 10 Mar 2006
Posts: 46

PostPosted: Thu May 15, 2008 9:43 pm    Post subject: Sending a combination of keys Reply with quote

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
View user's profile Send private message
Rhys



Joined: 17 Apr 2007
Posts: 701
Location: Florida

PostPosted: Thu May 15, 2008 9:58 pm    Post subject: Reply with quote

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
View user's profile Send private message
k3ph



Joined: 21 Jul 2006
Posts: 99

PostPosted: Thu May 15, 2008 11:24 pm    Post subject: Re: Sending a combination of keys Reply with quote

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
View user's profile Send private message
Rhys



Joined: 17 Apr 2007
Posts: 701
Location: Florida

PostPosted: Thu May 15, 2008 11:36 pm    Post subject: Reply with quote

I'm almost positive that CtrlDown and Ctrl Down are interchangeable...
_________________
[Join IRC!]
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group