| View previous topic :: View next topic |
| Author |
Message |
cornell2
Joined: 18 Mar 2005 Posts: 166
|
Posted: Tue Apr 05, 2005 11:58 pm Post subject: Bug? Alt Key? |
|
|
When I run this script
!F10::
msgbox, you pressed Alt + F10
return
and press Alt-F10 ... my keyboard locks (not mouse) ... no response until I hit enter. Then I regain keyboard control
Odd.
There's got to be an obvious reason, right? Any ideas?
Thanks! |
|
| Back to top |
|
 |
jonny
Joined: 13 Nov 2004 Posts: 3004 Location: Minnesota
|
Posted: Wed Apr 06, 2005 12:41 am Post subject: |
|
|
| What do you mean, exactly? Do you mean the keyboard locks completely, for any application? |
|
| Back to top |
|
 |
Titan
Joined: 11 Aug 2004 Posts: 5390 Location: /b/
|
Posted: Wed Apr 06, 2005 12:49 am Post subject: |
|
|
Strange, !F10 doesn't lock my keyboard.
Have you tried opening any other app (e.g. Notepad) and pressing some keys there ? _________________
 |
|
| Back to top |
|
 |
cornell2
Joined: 18 Mar 2005 Posts: 166
|
Posted: Wed Apr 06, 2005 2:55 am Post subject: |
|
|
| Titan wrote: | Strange, !F10 doesn't lock my keyboard.
Have you tried opening any other app (e.g. Notepad) and pressing some keys there ? |
Yup. Even tried it while typing this message. Keybd gets disabled until I click and unload ahk.
this is the entire file
!F10::
msgbox, got here
return |
|
| Back to top |
|
 |
SanskritFritz
Joined: 17 Feb 2005 Posts: 283 Location: Hungary, Budapest
|
Posted: Wed Apr 06, 2005 8:12 am Post subject: |
|
|
Here it works too.
What system are you using? Win98 maybe?
If 2000 or XP, what happens if you put this line to the beginning of the script: _________________ Is there another word for synonym? |
|
| Back to top |
|
 |
cornell2
Joined: 18 Mar 2005 Posts: 166
|
Posted: Wed Apr 06, 2005 4:52 pm Post subject: |
|
|
| SanskritFritz wrote: | Here it works too.
What system are you using? Win98 maybe?
If 2000 or XP, what happens if you put this line to the beginning of the script: |
Nope. I am using WinXP Home Edition. AND adding that extra command completely locked up my keyboard. Even unloading ahk did not resolve it, and I had to reboot.
Incidentally, I made sure there was nothing else loaded (that I know of) that might interfere with the keys.
Any ideas?
I am at a loss! |
|
| Back to top |
|
 |
Jon
Joined: 28 Apr 2004 Posts: 373
|
Posted: Wed Apr 06, 2005 4:59 pm Post subject: |
|
|
does this work?
| Code: | !F10::
send, {alt up}
msgbox, you pressed Alt + F10
return |
|
|
| Back to top |
|
 |
cornell2
Joined: 18 Mar 2005 Posts: 166
|
Posted: Wed Apr 06, 2005 5:52 pm Post subject: CueCat & !F10 |
|
|
| Jon wrote: | does this work?
| Code: | !F10::
send, {alt up}
msgbox, you pressed Alt + F10
return |
|
Same issue. BUT I think I figured out the problem. Alt-F9 works .. but not alt-F10. So this is an ahk-conflict issue with the cuecat (scanner) driver - which is supposed preceed scanner input with an AltF10 code - which is what I was trying to detect.
There must be some sort of conflict with the cuecat driver. I just noticed that I can see some affect with Alt-F10 without ahk - though not as severe.
Does anyone have any experience with this???
Thanks! |
|
| Back to top |
|
 |
Red_Wraith
Joined: 30 Jan 2005 Posts: 19
|
Posted: Wed Apr 06, 2005 7:44 pm Post subject: |
|
|
Do you happen to have a German keyboard? I had problems with mine and autohotkey (at a script for key remapping).
Cya
PS: Oh, I just read it had something to do with your scanner. Hm, my post won't help you then. |
|
| Back to top |
|
 |
|