| Author |
Message |
Topic: Disabling the power key |
ManaUser
Replies: 8
Views: 302
|
Forum: Ask for Help Posted: Mon Aug 10, 2009 4:46 pm Subject: Disabling the power key |
| Hey not bad! It makes the active window lose focus for some reason, but that should be fairly easy to deal with. |
Topic: Disabling the power key |
ManaUser
Replies: 8
Views: 302
|
Forum: Ask for Help Posted: Mon Aug 10, 2009 9:12 am Subject: Disabling the power key |
| The problem is, when I try to remap the key, AutoHotkey can detect it, and do something, but Windows still "sees" too. I had hopes for that KeyTweak program you suggested, since it modifies ... |
Topic: Disabling the power key |
ManaUser
Replies: 8
Views: 302
|
Forum: Ask for Help Posted: Mon Aug 10, 2009 12:02 am Subject: Disabling the power key |
| HID is only for USB, devices, isn't it? This keyboard is PS2. Or am I wrong about that? The dismemberment option had occurred to me and it's an El Cheapo keyboard, so I don't mind too much, but obviou ... |
Topic: Disabling the power key |
ManaUser
Replies: 8
Views: 302
|
Forum: Ask for Help Posted: Sat Aug 08, 2009 10:00 pm Subject: Disabling the power key |
| I'm sure there have been threads on this before, but I couldn't find one just now, so oh well. Has anyone found a way to disable (or repurpose) the power-off key on a keyboard without interfering with ... |
Topic: Easy Unicode functions |
ManaUser
Replies: 11
Views: 3525
|
Forum: Scripts & Functions Posted: Mon Jun 01, 2009 12:35 am Subject: Easy Unicode functions |
I thought I'd try making another function with the same premise, only using AutoHotkey_L's Send {U+XXXX} feature.
;IMPORTANT, you must save this script as UTF-8 to make it work.
;IMPORTANT, this scr ... |
Topic: Replacing `n, square problem |
ManaUser
Replies: 3
Views: 164
|
Forum: Ask for Help Posted: Sun May 31, 2009 5:08 pm Subject: Replacing `n, square problem |
| Try replacing `r`n instead of just `n. |
Topic: Change file extension |
ManaUser
Replies: 9
Views: 1295
|
Forum: Scripts & Functions Posted: Sun May 31, 2009 4:07 am Subject: Change file extension |
| I can't imagine why someone would want to hide file extensions, but if I did, that would be a great way to mitigate some of the annoyance. |
Topic: Easy Unicode functions |
ManaUser
Replies: 11
Views: 3525
|
Forum: Scripts & Functions Posted: Sun May 31, 2009 1:19 am Subject: Easy Unicode functions |
Just to let you know, AutoHotkey_L (Lexikos' build) supports sending of unicode characters through Send, {U+XXXX} where XXXX is the 4-digit hex code to the character.
That's fine, but you n ... |
Topic: Easy Unicode functions |
ManaUser
Replies: 11
Views: 3525
|
Forum: Scripts & Functions Posted: Sat May 30, 2009 4:28 pm Subject: Easy Unicode functions |
Works great. One question, what text editor do you use? Both PSPad and Notepad2 don't show the characters correctly (but they are pasted fine). In my browser, I see them correctly though.
You're ri ... |
Topic: Easy Unicode functions |
ManaUser
Replies: 11
Views: 3525
|
Forum: Scripts & Functions Posted: Sat May 30, 2009 2:57 am Subject: Easy Unicode functions |
| I "discovered" a really easy way to send (paste) Unicode characters from your script. I don't think I've seen this suggested on the forum before, but it's so simple I'm not sure why not. It ... |
Topic: Chromatron - Payware versions now FREE |
ManaUser
Replies: 1
Views: 381
|
Forum: General Chat Posted: Thu May 28, 2009 6:19 am Subject: Chromatron - Payware versions now FREE |
| Cool, I love that type of game. |
Topic: A_Ping() function without PING.EXE |
ManaUser
Replies: 28
Views: 5497
|
Forum: Scripts & Functions Posted: Wed May 27, 2009 7:40 pm Subject: A_Ping() function without PING.EXE |
| If you're targeting this at newbies, it could do with a a little more in the way of instructions, but never the less, it looks quite handy. |
Topic: MouseGetPos issue |
ManaUser
Replies: 10
Views: 966
|
Forum: Ask for Help Posted: Wed May 27, 2009 3:31 pm Subject: MouseGetPos issue |
| Might as well post your whole script. |
Topic: Mouse Click in upper left corner to close/open Firefox tabs |
ManaUser
Replies: 3
Views: 605
|
Forum: Ask for Help Posted: Wed May 27, 2009 1:36 pm Subject: Mouse Click in upper left corner to close/open Firefox tabs |
There's no single command to do that, but this should accomplish what you want:
CoordMode Mouse, Screen
#IfWinActive ahk_class MozillaUIWindowClass
LButton::
MouseGetPos X, Y
If ( X ... |
Topic: Can you check if a variable exists? |
ManaUser
Replies: 12
Views: 1238
|
Forum: Ask for Help Posted: Tue May 26, 2009 7:56 pm Subject: Can you check if a variable exists? |
This is what I ended up using:
NoCreate(TestVar)
{
Global
If %TestVar% =
Return ""
Else
Return (%TestVar%)
}
Pass it the name of a var ... |
| |