| Author |
Message |
Topic: How to detect Internet connection? |
timtyler
Replies: 15
Views: 2719
|
Forum: Ask for Help Posted: Thu Jan 25, 2007 2:49 pm Subject: How to detect Internet connection? |
Another way to detect an Internet connection (on some systems) is to check the contents of the built-in variables A_IPAddress1 through 4.
A_IPAddress1 did not seem to work - but:
A_IPAddress2 wo ... |
Topic: Re-purposing Intellisense |
timtyler
Replies: 4
Views: 929
|
Forum: Ask for Help Posted: Sat Jan 20, 2007 2:27 pm Subject: Re: Re-purposing Intellisense |
This thread also seems relevant:
Intellisense-like autoreplacement with multiple suggestions
http://www.autohotkey.com/forum/topic667.html |
Topic: Re-purposing Intellisense |
timtyler
Replies: 4
Views: 929
|
Forum: Ask for Help Posted: Sat Jan 20, 2007 1:45 pm Subject: Re: Re-purposing Intellisense |
try un-commenting last 3 lines
Rajat - thanks for your response - this is a great script by the way, and I've been trying to get it to work for more simple text entry purposes for a couple of weeks ... |
Topic: Long and complex hotkeys file |
timtyler
Replies: 2
Views: 471
|
Forum: Ask for Help Posted: Thu Jan 18, 2007 10:20 pm Subject: Long and complex hotkeys file |
Most obvious thing is other conflicting hotkeys, i.e. duplicate hotkeys with different modifiers or key combos. Have you checked that?
Hmm - that may explain some of the issues I've found.
Shoul ... |
Topic: Long and complex hotkeys file |
timtyler
Replies: 2
Views: 471
|
Forum: Ask for Help Posted: Thu Jan 18, 2007 8:36 pm Subject: Long and complex hotkeys file |
My main hotkeys file is getting long and complex
One problem is that the file seems sensitive to
ordering issues - putting key definition at the
end of the file doesn't work - e.g. this:
~ ... |
Topic: Using an X-keys keypad with AutoHotkey |
timtyler
Replies: 5
Views: 1094
|
Forum: Ask for Help Posted: Thu Jan 18, 2007 4:21 pm Subject: Using an X-keys keypad with AutoHotkey |
Did you read the section about special keys in the help file (in List of Keys, Mouse Buttons, and Joystick Controls). Maybe AHK can detect the keys natively.
The procedure described on:
http:/ ... |
Topic: Using an X-keys keypad with AutoHotkey |
timtyler
Replies: 5
Views: 1094
|
Forum: Ask for Help Posted: Thu Jan 18, 2007 4:13 pm Subject: Re: Using an X-keys keypad with AutoHotkey |
I recently purchased an X-keys keypad (
I have a couple of X-Keys devices:
http://timtyler.org/keyboard/
http://timtyler.org/keyboard/x_keys/
I use shift/ctrl/alt combiantions to trigger AHK ... |
Topic: How to make AutoHotKey speak each letter after it is typed |
timtyler
Replies: 21
Views: 1802
|
Forum: Ask for Help Posted: Thu Jan 18, 2007 3:12 pm Subject: How to make AutoHotKey speak each letter after it is typed |
| That's because you can only pass parameters to executables, not files that are associated with executables. You have to specify the executable and pass the file as a parameter, which is functionally i ... |
Topic: NEW:clipboardMenu0.8:paste,edit,save last 20 clipboard items |
timtyler
Replies: 48
Views: 11270
|
Forum: Scripts & Functions Posted: Mon Jan 15, 2007 12:28 pm Subject: NEW:clipboardMenu0.8:paste,edit,save last 20 clipboard items |
v0.8 doesn't work for me. It generates a menu - but the menu
contains no items from the clipboard - and so is useless.
Does anyone have v0.8 working correctly?
I've now got it to work. I don' ... |
Topic: catching multiple keyboards? |
timtyler
Replies: 1
Views: 616
|
Forum: Ask for Help Posted: Mon Jan 15, 2007 12:07 pm Subject: Re: catching multiple keyboards? |
Hi,
I am using a keyboard via usb and a built-in keyboard on my laptop. The question is if there is any standard way to differentiate between these two keyboards?
So that I can have an ahk scrip ... |
Topic: Open last window (Don't say alt-tab) |
timtyler
Replies: 6
Views: 681
|
Forum: Ask for Help Posted: Sun Jan 14, 2007 7:30 pm Subject: Open last window (Don't say alt-tab) |
This seems to work:
Loop
{
WinGetTitle, Title, A
WinWaitNotActive, %Title%
LastWindow := Title
}
RETURN
F5::WinActivate, %LastWindow%
Hope this helps
Go ... |
Topic: How to make AutoHotKey speak each letter after it is typed |
timtyler
Replies: 21
Views: 1802
|
Forum: Ask for Help Posted: Thu Jan 11, 2007 6:35 pm Subject: How to make AutoHotKey speak each letter after it is typed |
| That's because you can only pass parameters to executables, not files that are associated with executables. You have to specify the executable and pass the file as a parameter, which is functionally i ... |
Topic: How to make AutoHotKey speak each letter after it is typed |
timtyler
Replies: 21
Views: 1802
|
Forum: Ask for Help Posted: Thu Jan 11, 2007 2:56 pm Subject: How to make AutoHotKey speak each letter after it is typed |
Why don't you create a separate vbs file for each key and run them when that key is pressed? It should give you a little more speed, but probably not much.
That works - and works extremely effectiv ... |
Topic: Sound Files [SEARCH] |
timtyler
Replies: 9
Views: 981
|
Forum: Ask for Help Posted: Thu Jan 11, 2007 1:56 pm Subject: Re: A sound on every AHK action |
One problem is that auto-repeat on the sounds is sometimes not
desirable.
This:
HotKey ~Control, make_sound_arrow
HotKey ~Alt, make_sound_arrow
HotKey ~Shift, make_sound_arrow
...works bad ... |
Topic: DLLCall: Support for Human Interface devices |
timtyler
Replies: 150
Views: 96036
|
Forum: Scripts & Functions Posted: Wed Jan 10, 2007 2:00 pm Subject: 2 keypads: is the returned DeviceHandle different? |
This thread is a bit technical
I have some questions about whether this can be used to
distinguish between additional numeric keypads.
Has anyone tried this? Is the returned DeviceHandle d ... |
| |