| Author |
Message |
Topic: Randomly tab and enter data. |
Tarch
Replies: 29
Views: 617
|
Forum: Ask for Help Posted: Mon Jul 16, 2007 10:24 am Subject: Randomly tab and enter data. |
Hi,
Tmp can potentially be any character. Because you haven't escaped it (e.g. "\Q" . Tmp . "\E"), if Tmp is a regex-reserved character, the script could crash.
yes, you're ... |
Topic: Hotkey for fast shooting!!! |
Tarch
Replies: 7
Views: 289
|
Forum: Ask for Help Posted: Mon Jul 16, 2007 9:00 am Subject: Hotkey for fast shooting!!! |
Hi,
<::
SetKeyDelay, 50, 50
Send, 8
Send, {CONTROL}
Send, 9
Send, {CONTROL}
Return
Bye!  |
Topic: Hotkey for fast shooting!!! |
Tarch
Replies: 7
Views: 289
|
Forum: Ask for Help Posted: Mon Jul 16, 2007 8:52 am Subject: Hotkey for fast shooting!!! |
Hi,
check setkeydelay so you can specify pressduration.
Bye!  |
Topic: Randomly tab and enter data. |
Tarch
Replies: 29
Views: 617
|
Forum: Ask for Help Posted: Mon Jul 16, 2007 8:44 am Subject: Randomly tab and enter data. |
Hi,
I think it would be clearer in this two points with
temp := SubStr(Options, 2, -1)
temp := RegExReplace(Options, "^,?(.*?),?$", "$1" ... |
Topic: Randomly tab and enter data. |
Tarch
Replies: 29
Views: 617
|
Forum: Ask for Help Posted: Mon Jul 16, 2007 8:00 am Subject: Randomly tab and enter data. |
Hi,
Try to put some MsgBox or something that can give you a feedback on the content of the several variables you have.
Bye!  |
Topic: Randomly tab and enter data. |
Tarch
Replies: 29
Views: 617
|
Forum: Ask for Help Posted: Mon Jul 16, 2007 7:54 am Subject: Randomly tab and enter data. |
Hi,
sorry for the mistake and the not minimal code!
In any case you're right the winget function retrievs the list (if list parameter is specified) of the windows matching your criteria (in this ... |
Topic: Use SetMouseDelay to remap a key to click at a coordinate? |
Tarch
Replies: 1
Views: 175
|
Forum: Ask for Help Posted: Sun Jul 15, 2007 2:02 pm Subject: Use SetMouseDelay to remap a key to click at a coordinate? |
Hi,
try to write it in this way:
a::
SetMouseDelay -1
Click 44, 55
return
If you want the setmousedelay to be applied to your click you should put it before. And I think ... |
Topic: Send not always working |
Tarch
Replies: 2
Views: 379
|
Forum: Ask for Help Posted: Sat Jul 14, 2007 12:01 pm Subject: Send not always working |
Hi,
check [url=http://www.autohotkey.com/docs/commands/SetKeyDelay.htm]this
Bye!  |
Topic: Keeping a key held down not equal to a loop |
Tarch
Replies: 2
Views: 280
|
Forum: Ask for Help Posted: Sat Jul 14, 2007 11:57 am Subject: Keeping a key held down not equal to a loop |
Hi,
ControlSend,,{W down}, ahk_id %wowid1%
ControlSend,,{W down}, ahk_id %wowid2%
Bye!  |
Topic: World of Warcraft: AHK = cheating? |
Tarch
Replies: 62
Views: 25593
|
Forum: General Chat Posted: Thu Jul 12, 2007 10:24 pm Subject: World of Warcraft: AHK = cheating? |
Hi,
take a look at Star wars: the force unleashed, it seems to be amazing...unfortunately is will be released only on consoles (no news that says that will be released on pc up to now) :'(
Bye! :s ... |
Topic: Hotkeys in DAoC not working... |
Tarch
Replies: 6
Views: 306
|
Forum: Ask for Help Posted: Thu Jul 12, 2007 7:55 pm Subject: Hotkeys in DAoC not working... |
Hi,
it works with Labyrinth of the Minotaur. I don't understand what you mean (moreover it works with all send modes).
If you mean that you're not able to launch macro through hotkeys from the game ... |
Topic: Hotkeys in DAoC not working... |
Tarch
Replies: 6
Views: 306
|
Forum: Ask for Help Posted: Thu Jul 12, 2007 7:46 pm Subject: Hotkeys in DAoC not working... |
Hi,
this works:
$1::
Send 2
Random, rand, -25, 25
Sleep 100 + rand
Send 1
return
Tested!
Bye!  |
Topic: can ahk know whats under the cursor in a webpage? |
Tarch
Replies: 8
Views: 286
|
Forum: Ask for Help Posted: Thu Jul 12, 2007 7:42 pm Subject: can ahk know whats under the cursor in a webpage? |
Hi,
[url=http://code.google.com/p/fbug/]This firefox extension is able to highlight the element under the mouse. I know that probably is quite complex but maybe it can be helpful.
Bye!  |
Topic: Randomly tab and enter data. |
Tarch
Replies: 29
Views: 617
|
Forum: Ask for Help Posted: Thu Jul 12, 2007 7:14 am Subject: Randomly tab and enter data. |
Hi,
you could collect all the window ids of the documents (having the same titles it should be quite simple using WinGet), and try to send using controlsend or activating that window and using send. ... |
Topic: Randomly tab and enter data. |
Tarch
Replies: 29
Views: 617
|
Forum: Ask for Help Posted: Wed Jul 11, 2007 11:56 pm Subject: Randomly tab and enter data. |
Hi,
do you have different titles (e.g. doc1, doc2, ...ecc) in the documents? If so you could base the random code on that, you could know which number you have selected and so enter the correct text. ... |
| |