| Author |
Message |
Topic: Detect if FullScreen Window is Active |
Vinthian
Replies: 0
Views: 185
|
Forum: Ask for Help Posted: Fri May 16, 2008 1:52 pm Subject: Detect if FullScreen Window is Active |
As of late, I've been developing a DotA help tool for Warcraft III.
;Settings
#SingleInstance force
#HotkeyInterval 0
#InstallKeybdHook
#UseHook On
#MaxThreads 20
SetBatchLines, -1
SetKeyD ... |
Topic: Older AutoHotkey source code needed |
Vinthian
Replies: 4
Views: 260
|
Forum: Ask for Help Posted: Thu May 15, 2008 3:30 am Subject: Older AutoHotkey source code needed |
| I see 47 versions. ? |
Topic: New to doing Macro |
Vinthian
Replies: 2
Views: 80
|
Forum: Ask for Help Posted: Wed May 14, 2008 1:21 pm Subject: New to doing Macro |
| create a new file called script.ahk or something (make sure you enabled view file extensions on your windows shell, google it!). then just read around the documentation or forums on how to make some s ... |
Topic: Double Middle Mouse Button Click Locks Computer |
Vinthian
Replies: 7
Views: 145
|
Forum: Ask for Help Posted: Tue May 13, 2008 10:15 pm Subject: Double Middle Mouse Button Click Locks Computer |
try
Send {LWin Down}
Send {L Down}
|
Topic: Copy from clipboard to a variable |
Vinthian
Replies: 4
Views: 213
|
Forum: Ask for Help Posted: Tue May 13, 2008 7:21 pm Subject: Copy from clipboard to a variable |
Try reading this documentation for some information,
http://www.autohotkey.com/docs/misc/Clipboard.htm |
Topic: ARGGH - Help Please - Mapping RButton to two keyboard keys? |
Vinthian
Replies: 9
Views: 170
|
Forum: Ask for Help Posted: Tue May 13, 2008 3:46 am Subject: ARGGH - Help Please - Mapping RButton to two keyboard keys? |
| Just a warning, you might want to add an extra function to pause the script, because you won't be able to right click properly until you exit the script (which I couldn't do since I couldn't right cli ... |
Topic: Column format in Tab2 |
Vinthian
Replies: 10
Views: 170
|
Forum: Ask for Help Posted: Tue May 13, 2008 3:39 am Subject: Column format in Tab2 |
| Try using [url=http://www.autohotkey.com/forum/viewtopic.php?t=775]SmartGUI Creator to create your GUI, then implement your script to it. Much easier. |
Topic: ARGGH - Help Please - Mapping RButton to two keyboard keys? |
Vinthian
Replies: 9
Views: 170
|
Forum: Ask for Help Posted: Tue May 13, 2008 3:36 am Subject: ARGGH - Help Please - Mapping RButton to two keyboard keys? |
I don't know if this will work,
RButton::
Send w
Send x
return
I also tried "Send {w down}" and "Send {x down}" but I really can't test it. |
Topic: Multiple Button Labels |
Vinthian
Replies: 5
Views: 103
|
Forum: Ask for Help Posted: Mon May 12, 2008 10:02 pm Subject: Multiple Button Labels |
In a script where you use multiple gui's, how would you differentiate between which gui the buttonok label affect?
e.g.
text2 := window2
text3 := window3
^A::
gosub, window2 ... |
Topic: Dynamic Hotkeys |
Vinthian
Replies: 13
Views: 448
|
Forum: Ask for Help Posted: Mon May 12, 2008 2:41 pm Subject: Dynamic Hotkeys |
| Many many thanks for your help Superfraggle! It has been invaluable to me for completing this project! |
Topic: Dynamic Hotkeys |
Vinthian
Replies: 13
Views: 448
|
Forum: Ask for Help Posted: Mon May 12, 2008 1:46 pm Subject: Dynamic Hotkeys |
| Empty strings: To specify an empty string in an expression, use an empty pair of quotes. For example, the statement if (MyVar <> "") would be true if MyVar is not blank. However, in a ... |
Topic: Dynamic Hotkeys |
Vinthian
Replies: 13
Views: 448
|
Forum: Ask for Help Posted: Mon May 12, 2008 1:10 pm Subject: Dynamic Hotkeys |
I tried using the following, but it doesn't seem to work,
InitHotkeys:
Hotkey, IfWinActive,Warcraft III
;Hotkeys
if (NUM1 <> )
Hotkey, %NUM1%, numpad1, On
Hotkey, %NUM2%, ... |
Topic: Dynamic Hotkeys |
Vinthian
Replies: 13
Views: 448
|
Forum: Ask for Help Posted: Mon May 12, 2008 4:12 am Subject: Dynamic Hotkeys |
| Thanks again Superfraggle, but 1 more issue to address. When I set one of them to "None" (blank variable) it gives the Error: "" is not a valid key name. How would I check if there ... |
Topic: Dynamic Hotkeys |
Vinthian
Replies: 13
Views: 448
|
Forum: Ask for Help Posted: Mon May 12, 2008 3:07 am Subject: Dynamic Hotkeys |
| When assigned a "custom" dynamic hotkey that is set by the user via a gui, the hotkeys don't work ingame. For example, I set it to the TYGHBN setup I was testing earlier and they didn't work ... |
Topic: Dynamic Hotkeys |
Vinthian
Replies: 13
Views: 448
|
Forum: Ask for Help Posted: Mon May 12, 2008 1:46 am Subject: Dynamic Hotkeys |
| Bump, Anyone? |
| |