| Author |
Message |
Topic: My status and website changes |
halweg
Replies: 87
Views: 14162
|
Forum: Announcements Posted: Fri Oct 22, 2010 11:58 am Subject: My status and website changes |
| My original motivation for starting the AutoHotkey project was to empower users, including non-programmers, to do automation and hotkeys. I wanted the scripting language to be kept simple yet flexible ... |
Topic: Detect Double Modifier Key-presses |
halweg
Replies: 9
Views: 793
|
Forum: Ask for Help Posted: Mon Feb 15, 2010 3:52 pm Subject: Detect Double Modifier Key-presses |
At the moment this code seems me a little bit to complex. Not very reliable and maintainable.
But a good idea how to workaround the problem.  |
Topic: Detect Double Modifier Key-presses |
halweg
Replies: 9
Views: 793
|
Forum: Ask for Help Posted: Thu Feb 11, 2010 2:01 pm Subject: Detect Double Modifier Key-presses |
You are right, Leef_me, it matters wich modifier key I pressed first.
With
+LWIN UP::
IF A_PRIORHOTKEY NOT CONTAINS +#
msgbox, LSHIFT and LWIN pressed (starting with LSHIFT)
R ... |
Topic: Detect Double Modifier Key-presses |
halweg
Replies: 9
Views: 793
|
Forum: Ask for Help Posted: Thu Feb 11, 2010 9:14 am Subject: Detect Double Modifier Key-presses |
It seems I found a solution:
+#a::
msgbox win shift a
RETURN
+LWIN UP::
IF (NOT A_PRIORHOTKEY="+#a")
msgBox LSHIFT & LWIN
RETURN
Thank you anyway.
... |
Topic: Detect Double Modifier Key-presses |
halweg
Replies: 9
Views: 793
|
Forum: Ask for Help Posted: Thu Feb 11, 2010 8:58 am Subject: Detect Double Modifier Key-presses |
I know this is a really silly question to ask, but did you try it ????
This was my first attempt.
Unfortunately in this case "LSHIFT & LWIN" or "LWIN & LSHIFT" fire as so ... |
Topic: Detect Double Modifier Key-presses |
halweg
Replies: 9
Views: 793
|
Forum: Ask for Help Posted: Wed Feb 10, 2010 6:32 pm Subject: Detect Double Modifier Key-presses |
In AHK Help I found this example:LControl & F1::return ; Make left-control a prefix by using it in front of "&" at least once.
LControl::MsgBox You released LControl without having ... |
Topic: Soundbeep in Windows 7 |
halweg
Replies: 1
Views: 487
|
Forum: Ask for Help Posted: Fri Jan 08, 2010 2:02 pm Subject: Soundbeep in Windows 7 |
Searching around I found a kind of solution:
SOUNDBEEP should work the old way if replace the beep.sys file (windows\system32\drivers) by the old version from windows xp.
Now it remains to get th ... |
Topic: Soundbeep in Windows 7 |
halweg
Replies: 1
Views: 487
|
Forum: Ask for Help Posted: Thu Jan 07, 2010 7:53 pm Subject: Soundbeep in Windows 7 |
In my scripts I like to use some Soundbeeps to get an acoustic feedbacks.
After I installed Win 7 (32bit) the SOUNDBEEP-sounds was changed. It seems they are now generated by an acoustic processor.
... |
Topic: Close annoying dialog boxes automatically |
halweg
Replies: 22
Views: 11536
|
Forum: Scripts & Functions Posted: Fri Dec 18, 2009 12:30 pm Subject: Close annoying dialog boxes automatically |
Push!
See 1st post: a new (german) version of "Halwegs Fensterpflege" released. It could work in your language too. |
Topic: v1.0.48 released: Runs up to 3x as fast. Adds while-loop. |
halweg
Replies: 39
Views: 15140
|
Forum: Announcements Posted: Thu Mar 26, 2009 8:02 am Subject: v1.0.48 released: Runs up to 3x as fast. Adds while-loop. |
I have one wish for a long time now. I also program in C++.
I would like to be able to write stuff like:
Variable=Test
if(Variable=="Test") msgbox,Test
else msgbox,!TestWouldn't ... |
Topic: Close annoying dialog boxes automatically |
halweg
Replies: 22
Views: 11536
|
Forum: Scripts & Functions Posted: Thu Dec 11, 2008 4:44 pm Subject: Close annoying dialog boxes automatically |
I'm happy someone is interested in ""Halwegs Fensterpflege" vs. "window care". The interest in the german forum was very low.
But as I see, its not only a problem to have t ... |
Topic: What do you do with AHK? |
halweg
Replies: 29
Views: 6735
|
Forum: General Chat Posted: Wed Dec 10, 2008 1:29 pm Subject: What do you do with AHK? |
"]p.s. I feel sorry for your ex-secretary
Oh no! She has a better paid job now. I couldn't just find a suitable replacement  |
Topic: What do you do with AHK? |
halweg
Replies: 29
Views: 6735
|
Forum: General Chat Posted: Wed Dec 10, 2008 8:16 am Subject: What do you do with AHK? |
| What is "setpoint"? Part of the logitech mouseware? Could this work with MS mouses? |
Topic: What do you do with AHK? |
halweg
Replies: 29
Views: 6735
|
Forum: General Chat Posted: Wed Dec 10, 2008 7:33 am Subject: What do you do with AHK? |
Wheel Left / Right is a challenging approach. Which mouse software do you have?
Here's what I do with AHK:
1. Input special letters and signs.
2. Spell Control.
3. Scan.
4. Print.
5. Send E- ... |
Topic: Close annoying dialog boxes automatically |
halweg
Replies: 22
Views: 11536
|
Forum: Scripts & Functions Posted: Tue Dec 02, 2008 8:00 am Subject: Close annoying dialog boxes automatically |
It's called now "Fensterpflege" which means "Window care".
Beside the new GUI I added some additional improvements, so the script automatically:
- pushes buttons
- removes a ... |
| |