| Author |
Message |
Topic: The Auto-Helper [Script to answer any AHK problem presented] |
Ace Coder
Replies: 7
Views: 348
|
Forum: General Chat Posted: Tue Feb 09, 2010 4:01 am Subject: The Auto-Helper [Script to answer any AHK problem presented] |
| What was the account name? |
Topic: The Auto-Helper [Script to answer any AHK problem presented] |
Ace Coder
Replies: 7
Views: 348
|
Forum: General Chat Posted: Sat Feb 06, 2010 6:50 pm Subject: The Auto-Helper [Script to answer any AHK problem presented] |
I don't see any need for a new thread/forum/or even an IRC Bot...
Why would we need any of these? |
Topic: index of ahk source? |
Ace Coder
Replies: 1
Views: 72
|
Forum: Ask for Help Posted: Sat Feb 06, 2010 4:52 pm Subject: index of ahk source? |
You could throw together a quick Loop to read through the files and find it.
In Vista atleast, I am able to search a directory for filenames AND File contents, which would allow me to search all the ... |
Topic: The Auto-Helper [Script to answer any AHK problem presented] |
Ace Coder
Replies: 7
Views: 348
|
Forum: General Chat Posted: Sat Feb 06, 2010 4:48 pm Subject: The Auto-Helper [Script to answer any AHK problem presented] |
I plan to keep this script very simple, and in the event the script can't help a user, it directs them to write an AFH post using Game Macro>Game won't acknowledge AutoHotkey commands>
Does the ... |
Topic: Loop input |
Ace Coder
Replies: 5
Views: 172
|
Forum: Ask for Help Posted: Sat Feb 06, 2010 5:53 am Subject: Loop input |
^!s:: ;By the way, not the best choice of hotkey
loop
{
Send 4731{Enter}
;Run http://www.madeupsite.com
Send,{Browser_Back}
Sleep,2500
Send {Click ... |
Topic: The Auto-Helper [Script to answer any AHK problem presented] |
Ace Coder
Replies: 7
Views: 348
|
Forum: General Chat Posted: Sat Feb 06, 2010 3:22 am Subject: The Auto-Helper [Script to answer any AHK problem presented] |
I am going to begin working on a script that will attempt to answer any question/problem with AutoHotkey, primarily for noobs.
It will use a flowchart system (similar to the popular "20 Question ... |
Topic: Has anyone noticed... |
Ace Coder
Replies: 25
Views: 1483
|
Forum: General Chat Posted: Sat Feb 06, 2010 3:17 am Subject: Has anyone noticed... |
Idk about everyone else, but I feel special when one of my threads gets linked to.
I need to get started on that script, the one to answer questions that you ask it.
Maybe a 20 question sort of thin ... |
Topic: Aim down site hold instead of toggle |
Ace Coder
Replies: 2
Views: 143
|
Forum: Ask for Help Posted: Mon Feb 01, 2010 4:13 am Subject: Aim down site hold instead of toggle |
Eh, i'm in a good mood...
RButton::Send,{RButton Down}
RButton Up::Send,{RButton Up}
Completely untested, cheers. |
Topic: Learn to become a Java master! (Not Spam) |
Ace Coder
Replies: 5
Views: 266
|
Forum: General Chat Posted: Mon Feb 01, 2010 4:09 am Subject: Learn to become a Java master! (Not Spam) |
That's actually very helpful, breaks down a lot of what I'm reading in the Java book I already have.
Glad someone else found it useful. |
Topic: Search for text box name/value |
Ace Coder
Replies: 6
Views: 183
|
Forum: Ask for Help Posted: Sun Jan 31, 2010 11:55 pm Subject: Search for text box name/value |
| I should learn to read... |
Topic: Search for text box name/value |
Ace Coder
Replies: 6
Views: 183
|
Forum: Ask for Help Posted: Sun Jan 31, 2010 7:45 pm Subject: Search for text box name/value |
[url=http://www.autohotkey.com/docs/commands/ControlFocus.htm]ControlFocus and [url=http://www.autohotkey.com/docs/commands/ControlGetFocus.htm]ControlGetFoucs should help.
Cheers! |
Topic: Exit Script |
Ace Coder
Replies: 9
Views: 153
|
Forum: Ask for Help Posted: Sun Jan 31, 2010 6:51 pm Subject: Exit Script |
You need to add a return above the ExitApp hotkey.
;I am code
;I am more code
;I am still code
;Where did you learn to be code?
Return ;Tells the script to stop executing code and wait.
^x ... |
Topic: Exit Script |
Ace Coder
Replies: 9
Views: 153
|
Forum: Ask for Help Posted: Sun Jan 31, 2010 6:32 pm Subject: Exit Script |
^x::ExitApp ;Place this code at the bottom of your script, then run the script, then press Ctrl+x to exit the script.
P.S.NEVER act as commanding and rude as you just did, this is highly a ... |
Topic: Search for text box name/value |
Ace Coder
Replies: 6
Views: 183
|
Forum: Ask for Help Posted: Sun Jan 31, 2010 6:27 pm Subject: Search for text box name/value |
The name of a textbox?
WinGetActiveTitle,Name
MsgBox,%Name% ;Displays the "name" of the textbox/window that is active
If this isn't what you want then please repost and be clear. |
Topic: ImageSearch transparency confusion |
Ace Coder
Replies: 3
Views: 128
|
Forum: Ask for Help Posted: Sun Jan 31, 2010 6:23 pm Subject: ImageSearch transparency confusion |
| ImageSearch px, py, 0, 0, %A_ScreenWidth%, %A_ScreenHeight%, *Trans0xFF0000 *n150 arrow.png ;try increasing the value of n |
| |