| View previous topic :: View next topic |
| Author |
Message |
ZachBraff
Joined: 19 Jun 2009 Posts: 3
|
Posted: Fri Jun 19, 2009 1:43 pm Post subject: "ll" is runing my life. |
|
|
I am just testing out AutoHotkey so I made a script for dictating a message with one combo and spamming it with another:
UserInput = I AM FROM THE FURNITURE
#x::InputBox, UserInput, Spam Shit, What do you want to spam?
#z::Send %UserInput%{Enter}
It works completely fine in every way except it seems that if someone includes "ll" anywhere in the userinput message, it sends it slowly and you have to release the key combo, instead of being able to hold it down to rapidly spam it. |
|
| Back to top |
|
 |
Guest
|
Posted: Fri Jun 19, 2009 2:22 pm Post subject: |
|
|
something is wrong. I am not able to duplicate the problem. I tried these entering these strings in the inputbox:
xxxxxxxxxxxx||yyyyyyyyyyyyyyyyyy
xxxxxxxxxxxx"||"yyyyyyyyyyyyyyyyyy
xxxxxxxxxxxxyyyyyyyyyyyyyyyyyy
and they all perform the same! |
|
| Back to top |
|
 |
ZachBraff
Joined: 19 Jun 2009 Posts: 3
|
Posted: Fri Jun 19, 2009 8:39 pm Post subject: |
|
|
| Sometimes there is not a problem, but when I try simple things like "Allow" or "Gulliver", it messes up. |
|
| Back to top |
|
 |
d-man
Joined: 08 Jun 2006 Posts: 285
|
Posted: Fri Jun 19, 2009 9:44 pm Post subject: |
|
|
| I think your problem would be solved by using a different hotkey. Try using Ctrl or Alt instead of Win key. |
|
| Back to top |
|
 |
[VxE]
Joined: 07 Oct 2006 Posts: 3254 Location: Simi Valley, CA
|
Posted: Fri Jun 19, 2009 11:47 pm Post subject: |
|
|
| Code: | Sendmode, input
UserInput = I AM FROM THE FURNITURE
#x::InputBox, UserInput, Spam Shit, What do you want to spam?
#z::
keywait, LWin
keywait, RWin
Send %UserInput%{Enter}
return |  _________________ Ternary (a ? b : c) guide TSV Table Manipulation Library
Post code inside [code][/code] tags! |
|
| Back to top |
|
 |
ZachBraff
Joined: 19 Jun 2009 Posts: 3
|
Posted: Sat Jun 20, 2009 1:01 am Post subject: |
|
|
| Both of those fixed it, thanks. |
|
| Back to top |
|
 |
Splatocaster Guest
|
Posted: Mon Jun 22, 2009 6:48 pm Post subject: |
|
|
| your from the furniture? |
|
| Back to top |
|
 |
|