| Author |
Message |
Topic: New user is lost! |
mwharri
Replies: 11
Views: 293
|
Forum: Ask for Help Posted: Fri Aug 03, 2007 2:59 pm Subject: New user is lost! |
right click the tray icon for autohotkey and select 'Edit this Script'....when the code opens up, paste the code that tonne posted above....
:?*:;c ::Curiosity killed the cat.`nSa ... |
Topic: Starting software from within macro |
mwharri
Replies: 2
Views: 235
|
Forum: Ask for Help Posted: Mon Jul 30, 2007 3:30 am Subject: Starting software from within macro |
Do you have to open the command line first?
I'm not really sure, but I think you can change your Run command to this:
Run "D:\Program Files\DSpeech\DSpeech.exe"
and it will work ... |
Topic: Separate commands from the loop |
mwharri
Replies: 2
Views: 286
|
Forum: Ask for Help Posted: Mon Jul 16, 2007 7:24 am Subject: Separate commands from the loop |
wantedColor = 0xFFFFFF
crossX = 40
crossY = 78
Loop
{
PixelGetColor, notepadColor, %crossX%, %crossY%
if %ErrorLevel% = 0
Sendplay hello
sleep 200
}
I think this should work ... |
Topic: Run a script from another script passing parameters? |
mwharri
Replies: 7
Views: 267
|
Forum: Ask for Help Posted: Sun Jul 15, 2007 1:51 am Subject: Run a script from another script passing parameters? |
http://www.autohotkey.com/docs/Scripts.htm#cmd
Also, make sure the script you're calling is accepting the parameters properly. |
Topic: Air |
mwharri
Replies: 7
Views: 272
|
Forum: Ask for Help Posted: Fri Jul 13, 2007 7:24 pm Subject: Re: Air |
Did you read about this command?
[URL=http://www.autohotkey.com/docs/commands/RegWrite.htm]RegWrite |
Topic: SciTE4AutoHotkey - New version |
mwharri
Replies: 55
Views: 7806
|
Forum: Scripts & Functions Posted: Wed Jul 11, 2007 3:28 pm Subject: SciTE4AutoHotkey - New version |
| I'm not sure if this problem is related to my system setup or not. I have a dual monitor setup. If I am using scite and the intellisense window pops up, it pops up on the primary monitor, even if sc ... |
Topic: Help? How to make this loop for length of time (ex. 4 hours) |
mwharri
Replies: 2
Views: 152
|
Forum: Ask for Help Posted: Wed Jul 11, 2007 2:15 pm Subject: Help? How to make this loop for length of time (ex. 4 hours) |
#Persistent
mX = 123
mY = 123
SetTimer, Click, 300000
SetTimer, Send, 240000
SetTimer, End, 14400000
Click:
Click right %mX%,%mY%
return
Send:
Send {Space}
return ... |
Topic: Weird function - parameter issue |
mwharri
Replies: 5
Views: 188
|
Forum: Ask for Help Posted: Thu Jun 28, 2007 7:06 pm Subject: Weird function - parameter issue |
| take the %'s off |
Topic: Standard/User libraries for automatic function inclusion |
mwharri
Replies: 83
Views: 2654
|
Forum: Wish List Posted: Fri Jun 22, 2007 8:18 pm Subject: Standard/User libraries for automatic function inclusion |
A forum could potentially be used for proposing/posting new functions to be added. A new topic could be created with a poll for each new function/file (might not only contain functions) to be added. ... |
Topic: Standard/User libraries for automatic function inclusion |
mwharri
Replies: 83
Views: 2654
|
Forum: Wish List Posted: Fri Jun 22, 2007 6:50 pm Subject: Standard/User libraries for automatic function inclusion |
I have a forum that I had originally set up for this purpose that I could reactivate if a few people are interested. Alternately, maybe Chris could setup a separate forum here ( ) for potential st ... |
Topic: Standard/User libraries for automatic function inclusion |
mwharri
Replies: 83
Views: 2654
|
Forum: Wish List Posted: Fri Jun 22, 2007 3:52 pm Subject: Standard/User libraries for automatic function inclusion |
| There used to be a post here from someone about setting up a common account on AutoHotkey.net for stdlib authors. It also talked about Natural Docs and the possibility of automatically checking for st ... |
Topic: How come this if statement is true? |
mwharri
Replies: 5
Views: 242
|
Forum: Ask for Help Posted: Fri Jun 15, 2007 10:58 pm Subject: How come this if statement is true? |
| it's true b/c variable 'c' does equal 3.....if (a and b) OR c....c is true, therefore, statement is true. If c is true, then a and b are irrelevant...if c is a and b are true, then c is irrelevant. |
Topic: A Fast Macro |
mwharri
Replies: 4
Views: 224
|
Forum: Ask for Help Posted: Fri Jun 15, 2007 10:37 pm Subject: A Fast Macro |
q::
Send w
Sleep 200
Send e
Sleep 200
Return
like this?
if you want to send the string 'we' 20 times when q is pressed, just put it in a loop. Like this:
q::
Loop 2 ... |
Topic: Lil' Builder 0.6.1 [old thread] |
mwharri
Replies: 346
Views: 9597
|
Forum: Scripts & Functions Posted: Fri Jun 08, 2007 5:43 am Subject: Lil' Builder 0.6.1 [old thread] |
| Nicely Done! FYI...link points to the wrong version...but still, impressive |
Topic: Lil' Builder 0.6.1 [old thread] |
mwharri
Replies: 346
Views: 9597
|
Forum: Scripts & Functions Posted: Tue Jun 05, 2007 9:40 pm Subject: Lil' Builder 0.6.1 [old thread] |
Choosing a web control from the toolbox does one of 2 things for me:
1. spams the gui window with 6 controls
2. creates the control and creates a ragrid
I can't get it to do either consistently ... |
| |