AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Search found 70 matches
AutoHotkey Community Forum Index
Author Message
  Topic: New user is lost!
mwharri

Replies: 11
Views: 717

PostForum: Ask for Help   Posted: Fri Aug 03, 2007 1: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: 584

PostForum: Ask for Help   Posted: Mon Jul 30, 2007 2: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: 610

PostForum: Ask for Help   Posted: Mon Jul 16, 2007 6: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: 643

PostForum: Ask for Help   Posted: Sun Jul 15, 2007 12: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: 614

PostForum: Ask for Help   Posted: Fri Jul 13, 2007 6:24 pm   Subject: Re: Air
Did you read about this command?

[URL=http://www.autohotkey.com/docs/commands/RegWrite.htm]RegWrite
  Topic: [ARCHIVED THREAD] SciTE4AutoHotkey [USE VERSION 3 INSTEAD]
mwharri

Replies: 72
Views: 21919

PostForum: Scripts & Functions   Posted: Wed Jul 11, 2007 2:28 pm   Subject: [ARCHIVED THREAD] SciTE4AutoHotkey [USE VERSION 3 INSTEAD]
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: 452

PostForum: Ask for Help   Posted: Wed Jul 11, 2007 1: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: 528

PostForum: Ask for Help   Posted: Thu Jun 28, 2007 6:06 pm   Subject: Weird function - parameter issue
take the %'s off
  Topic: Standard/User libraries for automatic function inclusion
mwharri

Replies: 83
Views: 5087

PostForum: Wish List   Posted: Fri Jun 22, 2007 7: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: 5087

PostForum: Wish List   Posted: Fri Jun 22, 2007 5: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 ( Question ) for potential st ...
  Topic: Standard/User libraries for automatic function inclusion
mwharri

Replies: 83
Views: 5087

PostForum: Wish List   Posted: Fri Jun 22, 2007 2: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: 595

PostForum: Ask for Help   Posted: Fri Jun 15, 2007 9: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: 541

PostForum: Ask for Help   Posted: Fri Jun 15, 2007 9: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: 18244

PostForum: Scripts & Functions   Posted: Fri Jun 08, 2007 4: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: 18244

PostForum: Scripts & Functions   Posted: Tue Jun 05, 2007 8: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 ...
 
Page 1 of 5 Goto page 1, 2, 3, 4, 5  Next
All times are GMT
Jump to:  


Powered by phpBB © 2001, 2005 phpBB Group