| Author |
Message |
Topic: Send {NumLock} not changing LED |
Dragobr
Replies: 3
Views: 122
|
Forum: Ask for Help Posted: Sat Nov 21, 2009 3:59 pm Subject: Send {NumLock} not changing LED |
| Well, that was the script I tried. I tested different LedValues this time, and I found that 4, 5, 6, 7, 12, 13, 14 and 15 change the CapsLock LED. I tested all the way to 30, and no value changed the ... |
Topic: Send {NumLock} not changing LED |
Dragobr
Replies: 3
Views: 122
|
Forum: Ask for Help Posted: Sat Nov 21, 2009 5:31 am Subject: Send {NumLock} not changing LED |
| I'm on an Acer 5536 notebook, using Windows XP. When I put a send {NumLock} command in a script, the numlock state is changed, but it's indicator LED isn't. I tried the LED changing scripts i saw in t ... |
Topic: Replacing Numpad , with . |
Dragobr
Replies: 20
Views: 633
|
Forum: Ask for Help Posted: Sat Oct 24, 2009 2:47 am Subject: Replacing Numpad , with . |
Phew, that did it.
There might be more efficient solutions, but I will stick with this for now.
Thanks a lot for helping  |
Topic: Replacing Numpad , with . |
Dragobr
Replies: 20
Views: 633
|
Forum: Ask for Help Posted: Sat Oct 24, 2009 2:38 am Subject: Replacing Numpad , with . |
In this case, your substitution solved the problem, but try this:
0::
SetTitleMatchMode 2
IfWinNotActive, OpenOffice.org
{
send, .
}
Else
{
send, 0
}
return
This is the code I need, ... |
Topic: Replacing Numpad , with . |
Dragobr
Replies: 20
Views: 633
|
Forum: Ask for Help Posted: Sat Oct 24, 2009 2:25 am Subject: Replacing Numpad , with . |
I'm getting an error, "71 hotkeys have been received in the last 656ms".
Well, this code is called when I press NumpadDot, so when it calls for NumpadDot inside it, it's calling for itsel ... |
Topic: Replacing Numpad , with . |
Dragobr
Replies: 20
Views: 633
|
Forum: Ask for Help Posted: Sat Oct 24, 2009 2:16 am Subject: Replacing Numpad , with . |
I got something. Just the changed the code to this:
NumpadDot::
SetTitleMatchMode 3
IfWinNotActive, ahk_class SALFRAME
{
send, .
}
return
Now it won't give any input on calc, which means t ... |
Topic: Replacing Numpad , with . |
Dragobr
Replies: 20
Views: 633
|
Forum: Ask for Help Posted: Sat Oct 24, 2009 2:01 am Subject: Replacing Numpad , with . |
Registered, finally.
Well, I want the script to execute when calc isn't on top.
Tried your new suggestion, but it still doesn't work (the script is executing on calc). I don't get it, everything l ... |
| |