| View previous topic :: View next topic |
| Author |
Message |
hutch@edge.net
Joined: 16 Sep 2008 Posts: 69
|
Posted: Thu Mar 05, 2009 3:06 pm Post subject: SOLVED - Enter "+" as Text |
|
|
Greetings, Gurus.
In the middle of a long script, I need to pass +180 into another program as text. When I record it, i get {+}180, chich presses the shift key. I've tried
send, '+180
which didn't work.
How would I have AHK send the + as a + rather than {Shift}?
Thanks.
Last edited by hutch@edge.net on Thu Mar 05, 2009 6:13 pm; edited 1 time in total |
|
| Back to top |
|
 |
JimKarvo
Joined: 09 Jan 2009 Posts: 104
|
Posted: Thu Mar 05, 2009 3:39 pm Post subject: |
|
|
with shift key
| Code: | | Send, {SHIFTDOWN}={SHIFTUP}180 |
with Numlock keys
|
|
| Back to top |
|
 |
HotKeyIt
Joined: 18 Jun 2008 Posts: 1994 Location: GERMANY
|
|
| Back to top |
|
 |
hutch@edge.net
Joined: 16 Sep 2008 Posts: 69
|
Posted: Thu Mar 05, 2009 6:13 pm Post subject: |
|
|
Thanks,Guys.
Have a good one. |
|
| Back to top |
|
 |
|