| Author |
Message |
Topic: DropDownList GuiControl |
jaco0646
Replies: 1
Views: 454
|
Forum: Ask for Help Posted: Tue Jul 22, 2008 1:58 am Subject: DropDownList GuiControl |
GuiControl, Choose, ColorChoice, 3 ;or
GuiControl, ChooseString, ColorChoice, Red |
Topic: What is best way for AHK to detect when PC is done booting? |
jaco0646
Replies: 7
Views: 189
|
Forum: Ask for Help Posted: Tue Jul 22, 2008 12:31 am Subject: What is best way for AHK to detect when PC is done booting? |
| wuauclt.exe is the Windows Update service, which doesn't appear if automatic updates are turned off (at least on my XP SP2 machines). I wouldn't depend on this service in any scripts you might distrib ... |
Topic: Tip: retrieving command line output without a text file |
jaco0646
Replies: 3
Views: 69
|
Forum: Ask for Help Posted: Mon Jul 21, 2008 4:50 am Subject: Tip: retrieving command line output without a text file |
I took a brief look at those threads, but the DLLCalls are way over my head. I'm sure the functions are very powerful, but the "For" command may be a better alernative for lightweight app ... |
Topic: Tip: retrieving command line output without a text file |
jaco0646
Replies: 3
Views: 69
|
Forum: Ask for Help Posted: Mon Jul 21, 2008 4:01 am Subject: Tip: retrieving command line output without a text file |
| This may have been posted already, but I've never seen it. The only way I've ever gotten info from the Windows command line is by writing to a text file, parsing it, and immediately deleting it (hopin ... |
Topic: What is best way for AHK to detect when PC is done booting? |
jaco0646
Replies: 7
Views: 189
|
Forum: Ask for Help Posted: Mon Jul 21, 2008 3:48 am Subject: What is best way for AHK to detect when PC is done booting? |
Very nice. That is a handy tip. Sean is some sort of genius, isn't he?  |
Topic: Crude script-hack for Paint - any better Ideas? |
jaco0646
Replies: 4
Views: 156
|
Forum: Ask for Help Posted: Mon Jul 21, 2008 3:43 am Subject: Crude script-hack for Paint - any better Ideas? |
Try this:#V::
Run, mspaint,,max
WinWait, ahk_class MSPaintApp
PostMessage,0x111,620,,,ahk_class MSPaintApp
return
#IfWinActive, ahk_class MSPaintApp
F5::Send, ^e ... |
Topic: Crude script-hack for Paint - any better Ideas? |
jaco0646
Replies: 4
Views: 156
|
Forum: Ask for Help Posted: Sun Jul 20, 2008 8:49 pm Subject: Crude script-hack for Paint - any better Ideas? |
#V::
Run, mspaint,,max,PID
WinWait, ahk_pid %PID%
PostMessage,0x111,620,,,ahk_pid %PID%
return
#IfWinActive, ahk_class MSPaintApp
F5::Send, ^e
F6::Send, ... |
Topic: RegEx help needed... - [Solved] |
jaco0646
Replies: 3
Views: 81
|
Forum: Ask for Help Posted: Fri Jul 18, 2008 11:01 pm Subject: RegEx help needed... - [Solved] |
I should have added the i option as well, to make "null" case-insensitive, since you did have it in all caps.string = s,t.rNull 'i"(n)g-
MsgBox,% RegExReplace(string," ... |
Topic: Controlling Windows media player TOOLBAR |
jaco0646
Replies: 4
Views: 65
|
Forum: Ask for Help Posted: Fri Jul 18, 2008 10:11 pm Subject: Controlling Windows media player TOOLBAR |
[URL=http://www.autohotkey.com/forum/viewtopic.php?t=1869]Skip to next track when Media player in toolbar mode
That wasn't so hard to find.  |
Topic: RegEx help needed... - [Solved] |
jaco0646
Replies: 3
Views: 81
|
Forum: Ask for Help Posted: Fri Jul 18, 2008 8:48 pm Subject: RegEx help needed... - [Solved] |
\W = any non-word characters
| = OR
(null)+ = all occurrences of the word "null"
string = s,t.rnull 'i"(n)g-
MsgBox,% RegExReplace(string,"\W|(null)+"& ... |
Topic: Terminate at X time |
jaco0646
Replies: 11
Views: 156
|
Forum: Ask for Help Posted: Fri Jul 18, 2008 8:14 pm Subject: Terminate at X time |
| If you meant 6:45 PM, the hour will be 18 instead of 06. |
Topic: Click a URL in Editbox/Text box in AHK |
jaco0646
Replies: 2
Views: 73
|
Forum: Ask for Help Posted: Fri Jul 18, 2008 7:43 pm Subject: Click a URL in Editbox/Text box in AHK |
I'm not very clear on what you need, but if you simply want to create hypertext links in an AHK Gui, you can do that with text controls and a timer.
links = Google,Yahoo,Live,Ask,Lycos
Gui, +LastF ... |
Topic: Looking for a better way to rename a directory |
jaco0646
Replies: 4
Views: 117
|
Forum: Ask for Help Posted: Fri Jul 18, 2008 6:06 pm Subject: Looking for a better way to rename a directory |
| If you only want to rename the files and don't want 2 copies, use [URL=http://www.autohotkey.com/docs/commands/FileMove.htm]FileMove instead of FileCopy. |
Topic: Sending Data Over LAN adress |
jaco0646
Replies: 1
Views: 55
|
Forum: Ask for Help Posted: Fri Jul 18, 2008 12:38 am Subject: Sending Data Over LAN adress |
| I've never tried any of these scripts to know if they work or not, but I did know there were several out there. Would you mind posting the links to the ones you've tried just to have the information o ... |
Topic: mouse movement |
jaco0646
Replies: 3
Views: 91
|
Forum: Ask for Help Posted: Fri Jul 18, 2008 12:16 am Subject: mouse movement |
| [URL=http://www.autohotkey.com/docs/Variables.htm#TimeIdle]A_TimeIdle |
| |