| Author |
Message |
Topic: Windows-7 Like Window Positioning for XP and Vista |
Gertlex
Replies: 79
Views: 12198
|
Forum: Scripts & Functions Posted: Fri Apr 15, 2011 8:33 pm Subject: Windows-7 Like Window Positioning for XP and Vista |
| Props to you, KooKster; Thanks! |
Topic: Double press F1 problem |
Gertlex
Replies: 6
Views: 397
|
Forum: Ask for Help Posted: Sat Mar 13, 2010 5:10 am Subject: Double press F1 problem |
See also
Awesome. A nice concise way to do a bunch of hotkeys like this  |
Topic: Double press F1 problem |
Gertlex
Replies: 6
Views: 397
|
Forum: Ask for Help Posted: Fri Mar 12, 2010 9:42 pm Subject: Double press F1 problem |
| Thanks worked great. Alas I mess with AHK to infrequently to remember those modifiers. |
Topic: Double press F1 problem |
Gertlex
Replies: 6
Views: 397
|
Forum: Ask for Help Posted: Fri Mar 12, 2010 9:25 pm Subject: Double press F1 problem |
I believe this code is good, except for the part where I'm calling F1 again....
F1::
If (A_PriorHotKey = A_ThisHotKey and A_TimeSincePriorHotkey < 300) {
Send {F ... |
Topic: Screenshot Hotkey |
Gertlex
Replies: 8
Views: 9677
|
Forum: Scripts & Functions Posted: Tue Feb 23, 2010 7:56 pm Subject: Screenshot Hotkey |
Using this, and it works great for my needs (And ya, old thread, but old tools are cool ) |
Topic: Bug in Notepad++ syntax highlighting |
Gertlex
Replies: 7
Views: 1313
|
Forum: General Chat Posted: Sat Dec 19, 2009 2:21 pm Subject: Bug in Notepad++ syntax highlighting |
| Cool, thanks. |
Topic: Bug in Notepad++ syntax highlighting |
Gertlex
Replies: 7
Views: 1313
|
Forum: General Chat Posted: Sat Dec 19, 2009 1:24 am Subject: Bug in Notepad++ syntax highlighting |
Another one... (I choose this thread since it's fairly new)
It expects pairs of %s. E.g.
...
MsgBox, % 5000 * 200 + Sum ;
return
}
Which tells Msgbox to evaluate subsequent stuff as an e ... |
Topic: Prob with while loop expression |
Gertlex
Replies: 3
Views: 216
|
Forum: Ask for Help Posted: Tue Dec 08, 2009 10:56 pm Subject: Prob with while loop expression |
I was under the impression I had the September update on this computer. I guess my USB drive install has it, instead... (was v1.0.47ish and while is new in .48...)
Thanks for the help. |
Topic: Prob with while loop expression |
Gertlex
Replies: 3
Views: 216
|
Forum: Ask for Help Posted: Tue Dec 08, 2009 10:54 pm Subject: Prob with while loop expression |
CapsLock & q::
{
var = 1
num = 5
while var < num
{
var := A_Index
MsgBox %var%
}
}
works
i think it is related ... |
Topic: Prob with while loop expression |
Gertlex
Replies: 3
Views: 216
|
Forum: Ask for Help Posted: Tue Dec 08, 2009 10:34 pm Subject: Prob with while loop expression |
So this seems like it ought to be ridiculously simple.
CapsLock & q::
{
var = 1
num = 5
while var < num
{
MouseMove 400,400
Sleep 1000
GoSub Capslock ... |
Topic: How to deactivate/re-activate script.ahk with 1 or 2 hotkeys |
Gertlex
Replies: 4
Views: 506
|
Forum: Ask for Help Posted: Tue Nov 17, 2009 8:47 pm Subject: How to deactivate/re-activate script.ahk with 1 or 2 hotkeys |
Tab & NumPad7:: Suspend
return
This works - but my Tab-key does not work any more?
Use a different modifier such as Ctrl or Shift, or Ctrl+Shift
E.g. ^NumPad7 !NumPad7 or !^NumPad7, respec ... |
Topic: 3D-Mouse/Space Navigator: Receive + transform messages/data? |
Gertlex
Replies: 3
Views: 1124
|
Forum: Ask for Help Posted: Thu Sep 10, 2009 10:02 pm Subject: 3D-Mouse/Space Navigator: Receive + transform messages/data? |
| I got their high end 3d mouse today, and from an AHK perspective, have found it "lacking". None of the inputs from the 3D knob or the tons of buttons register in AHK's key history except fo ... |
Topic: Set default program for file types with AHK? |
Gertlex
Replies: 2
Views: 393
|
Forum: Ask for Help Posted: Mon Nov 03, 2008 10:14 pm Subject: Set default program for file types with AHK? |
I'm curious if there's a way to set what program files of a certain type are opened with, behind the scenes?
Specifically, I'm using Windows Vista on school computers. I'm able to put a compiled A ... |
Topic: Moving the active window from one monitor to the other |
Gertlex
Replies: 3
Views: 1724
|
Forum: Scripts & Functions Posted: Wed Oct 01, 2008 7:58 pm Subject: Moving the active window from one monitor to the other |
Awesome.
Now I just need to get a second monitor  |
Topic: Will autohotkey let me assign some keys for å,æ and ø |
Gertlex
Replies: 9
Views: 974
|
Forum: Ask for Help Posted: Wed Oct 01, 2008 7:49 pm Subject: Will autohotkey let me assign some keys for å,æ and ø |
Here's what i do for the additional letters of the german alphabet (and a few other random chars):
:c?*:uuU::Ü
:c?*:ooO::Ö
:c?*:aaA::Ä
:c?* ... |
| |