| Author |
Message |
Topic: Help? How to make this loop for length of time (ex. 4 hours) |
jjingoldsby
Replies: 2
Views: 185
|
Forum: Ask for Help Posted: Wed Jul 11, 2007 1:40 pm Subject: Help? How to make this loop for length of time (ex. 4 hours) |
Thanks alot.
I'm new to the AHK Scripting...
Looks like that would work. |
Topic: Help? How to make this loop for length of time (ex. 4 hours) |
jjingoldsby
Replies: 2
Views: 185
|
Forum: Ask for Help Posted: Wed Jul 11, 2007 12:55 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
Click:
Click right %mX%,%mY%
return
Send:
Send {Space}
return
; Would the following line ... |
Topic: Help Edit/Modify this script please! See last post. |
jjingoldsby
Replies: 4
Views: 225
|
Forum: Ask for Help Posted: Tue Jul 10, 2007 5:51 pm Subject: Help Edit/Modify this script please! See last post. |
SetTimer
Click
Send
#Persistent
mX = 123 ; Replace these 2 lines with your coordinates
mY = 123
SetTimer, Click, 300000
SetTimer, Send, 240000
Click:
Click right %mX%,%mY%
retu ... |
Topic: Help Edit/Modify this script please! See last post. |
jjingoldsby
Replies: 4
Views: 225
|
Forum: Ask for Help Posted: Mon Jul 09, 2007 3:59 pm Subject: Help Edit/Modify this script please! See last post. |
Thank you very much! Appreciated
Would this have worked? Or was I way off?
Loop
{
Send, {Click Right x,y}
Sleep 240000 (4 min)
continue
Send {Space}
Sleep 60000 (1 min
} |
Topic: Help Edit/Modify this script please! See last post. |
jjingoldsby
Replies: 4
Views: 225
|
Forum: Ask for Help Posted: Mon Jul 09, 2007 3:23 pm Subject: Help Edit/Modify this script please! See last post. |
Here is what I would like the script to do:
I know 0 about scripting and would appreciate it very much if someone could help.
I want and endless loop. I want an "auto" Right mouse cl ... |
| |