 |
AutoHotkey Community Let's help each other out
|
| View previous topic :: View next topic |
| Author |
Message |
yukhim
Joined: 10 May 2008 Posts: 6
|
Posted: Sun May 11, 2008 10:51 am Post subject: Can anybody help me out? |
|
|
I know how loop works.
Loop
{
Send, 5
Send, 4
Send, 7
Send, 8
Sleep, 6000
}
this is the one i'm using.The problem now is how do i actually make it work in a seperate way as in send,8 in different sleep time.CAn help me out?If i want to set to 3 min..what should i put at sleep?Sleep,180000? |
|
| Back to top |
|
 |
Guest
|
Posted: Sun May 11, 2008 11:15 am Post subject: |
|
|
| Code: | Loop
{
Send, 5
Send, 4
Send, 7
sleep,180000
Send, 8
Sleep, 6000
} |
Difficult to understand what you want.  |
|
| Back to top |
|
 |
Lexikos
Joined: 17 Oct 2006 Posts: 2605 Location: Australia, Qld
|
Posted: Fri May 16, 2008 8:40 am Post subject: |
|
|
My mind-reading is a bit rusty, but I think what you want is to send 547 every 6 seconds and send 8 every 3 minutes. If that is the case, use SetTimer instead of a loop:
| Code: | #Persistent ; Not necessary if you have hotkeys.
; to enable:
SetTimer, Send547, 6000
SetTimer, Send8, 180000
return
; to disable:
; SetTimer, Send547, Off
; SetTimer, Send8, Off
Send547:
Send, 5
Send, 4
Send, 7
return
Send8:
Send, 8
return |
|
|
| Back to top |
|
 |
BoBo² Guest
|
Posted: Fri May 16, 2008 10:29 am Post subject: |
|
|
| Quote: | | Can anybody help me out? | This subject line is useless.  |
|
| Back to top |
|
 |
|
|
You can post new topics in this forum You can reply to topics in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|