| Author |
Message |
Topic: Terminate 2 scripts using 1 key? |
Dannymet
Replies: 8
Views: 128
|
Forum: Ask for Help Posted: Sun Jul 20, 2008 7:51 pm Subject: Terminate 2 scripts using 1 key? |
| fail and fail... |
Topic: Terminate 2 scripts using 1 key? |
Dannymet
Replies: 8
Views: 128
|
Forum: Ask for Help Posted: Sun Jul 20, 2008 4:55 pm Subject: Terminate 2 scripts using 1 key? |
| i dont really understand that -.- |
Topic: Terminate 2 scripts using 1 key? |
Dannymet
Replies: 8
Views: 128
|
Forum: Ask for Help Posted: Sun Jul 20, 2008 4:36 pm Subject: Terminate 2 scripts using 1 key? |
I have 2 scripts set to be terminated by pressing F12, but i have to press F12 twice to terminate them both. I need 2 scripts running at once because AHK isn't multi threaded.
Please help me  |
Topic: Run 2 scripts at the same time? |
Dannymet
Replies: 2
Views: 109
|
Forum: Ask for Help Posted: Sun Jul 20, 2008 12:01 am Subject: Run 2 scripts at the same time? |
i want this
F1::
ToggleVar := !ToggleVar
SetTimer, ClickRand, -10
return
F12::
ExitApp
ClickRand:
loop
{
If !ToggleVar
Break ... |
Topic: mouseclick to be random, but within a certain range |
Dannymet
Replies: 5
Views: 168
|
Forum: Ask for Help Posted: Fri Jul 18, 2008 10:03 pm Subject: mouseclick to be random, but within a certain range |
thankyou soo much. That last script does EXACTLY what i want it to do. Its got random sleep and everything  |
Topic: mouseclick to be random, but within a certain range |
Dannymet
Replies: 5
Views: 168
|
Forum: Ask for Help Posted: Fri Jul 18, 2008 9:08 pm Subject: mouseclick to be random, but within a certain range |
what about the 1000ms to 1500ms delay.. and the f1 key to terminate?
and thanks a lot for your help already
edit: im really sorry if im being a noob at this stuff.. but i only know the ba ... |
Topic: mouseclick to be random, but within a certain range |
Dannymet
Replies: 5
Views: 168
|
Forum: Ask for Help Posted: Fri Jul 18, 2008 9:02 pm Subject: mouseclick to be random, but within a certain range |
im the same user.. didnt realise i wasnt logged in
x = random [,100 ,150]
y = random [,100 ,150]
s = random [,1000 ,1500]
Click %x% %y%
sleep, %s%
Click %x% %y%
... |
| |