| Author |
Message |
Topic: AutoHotkey article on PC magazine |
POINTS
Replies: 1
Views: 476
|
Forum: General Chat Posted: Mon Sep 01, 2008 11:43 pm Subject: AutoHotkey article on PC magazine |
Check this out: an AutoHotkey article was posted on PC magazine. (I think I saw this article on digg.) Pretty neat to see it posted there.
http://www.pcmag.com/article2/0,2817,2328732,00.asp |
Topic: Compiled AutoHotkey scripts detected as virus by AVG |
POINTS
Replies: 30
Views: 15847
|
Forum: Ask for Help Posted: Tue Feb 12, 2008 10:19 am Subject: AVG |
| For anyone having this problem again, I was able to use my compiled code when I rolled back to 1.0.47.3. (I don't have 1.0.47.4 but that might work too.) |
Topic: Warcraft 3 Frozen Throne |
POINTS
Replies: 6
Views: 3359
|
Forum: Ask for Help Posted: Sun Jan 13, 2008 1:19 am Subject: Go home |
| The code above was for toggling autocasting. I tested this code and it works for sending your units home. Hover over hall on the minimap and press a to set it up. Then press s with your unit select ... |
Topic: Warcraft 3 Frozen Throne |
POINTS
Replies: 6
Views: 3359
|
Forum: Ask for Help Posted: Fri Jan 11, 2008 4:39 pm Subject: Autocast |
I use this function to toggle autocast. Your code will be similar to this.
This function takes an number 1 to 12, and clicks the right mouse button on one of the grid.
The code will save the cu ... |
Topic: I need one key to do 3 things and toggle between them |
POINTS
Replies: 7
Views: 644
|
Forum: Ask for Help Posted: Thu Jan 10, 2008 6:26 pm Subject: Nice |
Very nice, although I really don't want to see UD nuking any faster.  |
Topic: Problem with wheel down and wheel up please help |
POINTS
Replies: 15
Views: 1105
|
Forum: Ask for Help Posted: Thu Jan 10, 2008 6:24 pm Subject: Left and right too? |
| Interesting... Do you use anything for left and right? |
Topic: wc3 and autohotkey |
POINTS
Replies: 2
Views: 925
|
Forum: Ask for Help Posted: Thu Jan 10, 2008 6:21 pm Subject: Yep |
Mbutton::Numpad4?
That's how I would do it. |
Topic: Serial Communication |
POINTS
Replies: 5
Views: 632
|
Forum: Ask for Help Posted: Thu Jan 10, 2008 6:14 pm Subject: Python |
| If you aren't limited to using AHK, I know you can use python for serial communication. You will have to download python, python's windows modules, and pyserial. Also, you can get a GUI module for p ... |
Topic: Start scripts with windows |
POINTS
Replies: 10
Views: 616
|
Forum: Ask for Help Posted: Thu Jan 10, 2008 6:12 pm Subject: Startup folder |
| You can create a shortcut to your Startup folder in C:\Documents and Settings\USERNAME\Start Menu\Programs\Startup. |
Topic: Warcraft 3 Frozen Throne |
POINTS
Replies: 6
Views: 3359
|
Forum: Ask for Help Posted: Thu Jan 10, 2008 6:11 pm Subject: Re: Warcraft 3 Frozen Throne |
I would like a shortcut for sending units back to mainhall/base. What to type?
You need to have 2 hotkeys setup. One to record the position of your main hall using MouseGetPos. (You will have to ... |
Topic: Probably so easy you'll laugh. |
POINTS
Replies: 3
Views: 529
|
Forum: Ask for Help Posted: Thu Jan 10, 2008 6:05 pm Subject: Functions |
I think a function is what you're looking for.
http://www.autohotkey.com/docs/Functions.htm |
Topic: Is it possible to unbind a default key? |
POINTS
Replies: 6
Views: 646
|
Forum: Ask for Help Posted: Mon Sep 24, 2007 7:04 am Subject: Warkeys |
The companion program to Warkeys, AutoWarkey, let's you setup an autohotkey script. But if you can write your own script go for it!
Direct mapping will probably work better for you:
t::q |
Topic: Is it possible to unbind a default key? |
POINTS
Replies: 6
Views: 646
|
Forum: Ask for Help Posted: Sun Sep 23, 2007 2:40 am Subject: Is it possible to unbind a default key? |
t in dota is still t in notepad. You could add a #IfWinActive Warcraft III to your script but then you wouldn't be able to type t in messages or in chatrooms.
You can edit your customkeys.txt to c ... |
Topic: detecting internet status |
POINTS
Replies: 9
Views: 872
|
Forum: Ask for Help Posted: Sat Sep 22, 2007 11:40 pm Subject: I have a script |
| I have a script that runs when I start my computer because sometimes it takes a minute or 2 to get an IP address. This script shows a splash screen until the computer has an IP. (It might not work o ... |
Topic: Pausing when the script running at the first time |
POINTS
Replies: 3
Views: 389
|
Forum: Ask for Help Posted: Fri Sep 21, 2007 1:05 am Subject: Pause |
Pause it when you start it.
Pause
Cnt = 1
Loop
{
Send, {F%Cnt%}
Sleep, 5000
Send, {F8}
Sleep, 5000
If Cnt = 7
... |
| |