| Author |
Message |
Topic: PingRep - Network Monitoring |
TDMedia
Replies: 3
Views: 1059
|
Forum: Scripts & Functions Posted: Tue Sep 11, 2007 2:18 pm Subject: PingRep - Network Monitoring |
| Well, I've finally gotten around to making a proper source code package for PingRep for those of you that want to take a look. It includes all the necessary files to compile the script, or you can ju ... |
Topic: Auto-Repeat with no Delay |
TDMedia
Replies: 5
Views: 452
|
Forum: Ask for Help Posted: Tue Aug 14, 2007 8:26 am Subject: Auto-Repeat with no Delay |
| Glad to hear it helped. |
Topic: Auto-Repeat with no Delay |
TDMedia
Replies: 5
Views: 452
|
Forum: Ask for Help Posted: Mon Aug 13, 2007 11:49 pm Subject: Auto-Repeat with no Delay |
| Well, that's certainly odd. Usually games use a method of detecting input that doesn't use the repeat function in Windows (I believe that this is called DirectInput, but I don't have any real knowled ... |
Topic: Auto-Repeat with no Delay |
TDMedia
Replies: 5
Views: 452
|
Forum: Ask for Help Posted: Mon Aug 13, 2007 9:36 pm Subject: Auto-Repeat with no Delay |
Perhaps I don't understand the problem, but is there a reason that you can't use something like:
Home::
{
Send {Up Down}
Send {Left Down}
& ... |
Topic: PingRep - Network Monitoring |
TDMedia
Replies: 3
Views: 1059
|
Forum: Scripts & Functions Posted: Wed Aug 01, 2007 5:44 pm Subject: PingRep - Network Monitoring |
Go ahead and decompile it, but I can't be held responsible for what you may see!
PINGREPEVELOPER3453009
I don't want to post it in the open for a couple of reasons, but mainly because it's so ... |
Topic: PingRep - Network Monitoring |
TDMedia
Replies: 3
Views: 1059
|
Forum: Scripts & Functions Posted: Wed Aug 01, 2007 5:39 am Subject: PingRep - Network Monitoring |
| A long time ago, I started a script to log my ISPs downtime. Our connection was horrible (going out for hours/days at a time), and I needed some proof to show them that there was really something goi ... |
Topic: Remove a window from the taskbar |
TDMedia
Replies: 11
Views: 446
|
Forum: Ask for Help Posted: Fri Jul 27, 2007 2:05 am Subject: Remove a window from the taskbar |
| [url=http://www.autohotkey.com/docs/commands/WinHide.htm]WinHide will hide the taskbar button, but it also hides the window itself, hence the name. I don't know if there's a way to hide just the task ... |
Topic: How do I rename my process? (answered) |
TDMedia
Replies: 9
Views: 473
|
Forum: Ask for Help Posted: Fri Jul 27, 2007 2:03 am Subject: How do I rename my process? (answered) |
First, /k is a cmd option, so you don't need it if you're already in a prompt.
You also need to be in the directory of the file you're trying to change the name of unless you specify an absolute pa ... |
Topic: GUI |
TDMedia
Replies: 8
Views: 304
|
Forum: Ask for Help Posted: Fri Jul 27, 2007 1:59 am Subject: GUI |
Be sure to tell me how it goes - now I'm interested  |
Topic: GUI |
TDMedia
Replies: 8
Views: 304
|
Forum: Ask for Help Posted: Fri Jul 27, 2007 1:46 am Subject: GUI |
| That's a good question. I myself haven't had to use child windows yet, so I don't know if such a thing is possible through AHK. Intuitively, though, you would probably have to use some DLLCalls to g ... |
Topic: GUI |
TDMedia
Replies: 8
Views: 304
|
Forum: Ask for Help Posted: Fri Jul 27, 2007 12:39 am Subject: GUI |
Well, multiple GUIs and MDI are two fairly different things. For MDI, I would start Gui, Add, Text,, This is GUI 1.
Gui, Show,, GUI 1
Gui, 2: Add, Text,, This is GUI 2.
Gui, 2: Show,, GUI ... |
Topic: How can i use if conditon only once |
TDMedia
Replies: 4
Views: 270
|
Forum: Ask for Help Posted: Wed Jul 25, 2007 2:27 pm Subject: How can i use if conditon only once |
If I understand correctly, you want something like this:
#SingleInstance, Force
Var = 1
Loop, 3
{
If Var > 0
{
Occurrences += 1
If Occurrences >= 2
... |
Topic: Get windows run dialog |
TDMedia
Replies: 3
Views: 178
|
Forum: Ask for Help Posted: Fri Jun 29, 2007 7:30 am Subject: Get windows run dialog |
Well, you could use:
Send, #r
This should work on all versions of Windows 95 and on (I may be wrong here; it's been quite a while since I've used anything prior to 2K.) This isn't very elegant ... |
Topic: ImageSearch,,,,,,,, All |
TDMedia
Replies: 1
Views: 353
|
Forum: Wish List Posted: Fri Jun 29, 2007 7:20 am Subject: ImageSearch,,,,,,,, All |
I hope that this hasn't been requested before - the only article I found about it was here: http://www.autohotkey.com/forum/viewtopic.php?t=12625
So essentially, I want to be able to search for and ... |
Topic: Syntax Hell |
TDMedia
Replies: 4
Views: 254
|
Forum: Ask for Help Posted: Mon May 21, 2007 10:24 pm Subject: Syntax Hell |
| Thanks for that info; it'll help me quite a bit. |
| |