| View previous topic :: View next topic |
| Author |
Message |
bbint
Joined: 17 Sep 2008 Posts: 12
|
Posted: Sat Nov 21, 2009 8:39 am Post subject: How do you ouput the original key instead of your remap? |
|
|
Here's a partial piece of a hotkey I have
| Code: |
1::
Send 1
Sleep 50
Send 2
return
|
I want to get the number 12, but it doesn't work
I only get the 2
Besides simply using another key to initiate this, what can I do to ignore the fact that 1 has been remapped?
I tried...
Send {Blind}1
Why? I don't know haha
I saw it somewhere, and I thought it had something to do with ignoring stuff
Thanks for any help |
|
| Back to top |
|
 |
a_h_k
Joined: 02 Feb 2008 Posts: 344
|
Posted: Sat Nov 21, 2009 9:01 am Post subject: Re: How do you ouput the original key instead of your remap? |
|
|
| Code: | $1::
Send 1
Sleep 50
Send 2
return |
|
|
| Back to top |
|
 |
bbint
Joined: 17 Sep 2008 Posts: 12
|
Posted: Sat Nov 21, 2009 9:58 am Post subject: |
|
|
sweet!
Thanks a_h_k
I saw the $ in the documentation, but there were no examples, so I was doing this:
| Code: | 1::
Send $1
Sleep 50
Send $2
return |
haha I suck |
|
| Back to top |
|
 |
|