| Author |
Message |
Topic: AutoHotkey_L : Arrays, Debugger, #If expression, etc. |
HKPolice
Replies: 441
Views: 82558
|
Forum: Scripts & Functions Posted: Mon Nov 16, 2009 12:06 pm Subject: AutoHotkey_L : Arrays, Debugger, #If expression, etc. |
Can you please make a version that doesn't insert extra CTRL key after releasing ALT?
http://www.autohotkey.com/forum/viewtopic.php?t=51194
This unwanted 'feature' has been around for over 2 ye ... |
Topic: How to disable extra CTRL keys that AHK is generating?? |
HKPolice
Replies: 4
Views: 214
|
Forum: Ask for Help Posted: Mon Nov 16, 2009 11:51 am Subject: How to disable extra CTRL keys that AHK is generating?? |
I have tried the script and i see the same thing, However the elapsed time is 0.00. It's entirely possible it's too fast for anything to pick up. Is it interfering in some way?
Easiest solution is ... |
Topic: Extraneous control key presses generated by #or ! hotkeys! |
HKPolice
Replies: 81
Views: 5489
|
Forum: Wish List Posted: Mon Nov 16, 2009 11:05 am Subject: Extraneous control key presses generated by #or ! hotkeys! |
I think this needs a bump, over 2 years later and still not fixed.
http://www.autohotkey.com/forum/viewtopic.php?p=310928#310928 |
Topic: How to disable extra CTRL keys that AHK is generating?? |
HKPolice
Replies: 4
Views: 214
|
Forum: Ask for Help Posted: Mon Nov 16, 2009 10:59 am Subject: How to disable extra CTRL keys that AHK is generating?? |
How are you determining that you are "getting extra CTRL keys generated by AHK"?
What program are you testing this script with ?
It is showing in AHK's own Key history:
A4 038 d ... |
Topic: How to disable extra CTRL keys that AHK is generating?? |
HKPolice
Replies: 4
Views: 214
|
Forum: Ask for Help Posted: Mon Nov 16, 2009 10:17 am Subject: How to disable extra CTRL keys that AHK is generating?? |
I am using this script now:
Ins::Suspend
*LButton::
while GetKeyState("LButton", "P") ; While the Mouse1 key is being held down physically.
{
S ... |
Topic: Macro stops whenever CTRL, ALT or Shift is pressed. |
HKPolice
Replies: 2
Views: 116
|
Forum: Ask for Help Posted: Mon Nov 16, 2009 8:44 am Subject: Macro stops whenever CTRL, ALT or Shift is pressed. |
Try
*LButton:
...
Return
Thanks, that works!
But now I have another problem. For some reason, the program is pressing CTRL when I'm holding Alt + mouse1, then switching to A + mouse1. (I ... |
Topic: Macro stops whenever CTRL, ALT or Shift is pressed. |
HKPolice
Replies: 2
Views: 116
|
Forum: Ask for Help Posted: Mon Nov 16, 2009 7:56 am Subject: Macro stops whenever CTRL, ALT or Shift is pressed. |
I'm using this simple script for rapidfire with the mouse:
Ins::Suspend
LButton::
Loop
{
SetMouseDelay 30
Click
If (GetKeyState("LButton","P")=0)
Break
}
But whenever ... |
| |