AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Can anybody help me out?

 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help
View previous topic :: View next topic  
Author Message
yukhim



Joined: 10 May 2008
Posts: 6

PostPosted: Sun May 11, 2008 10:51 am    Post subject: Can anybody help me out? Reply with quote

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
View user's profile Send private message
Guest






PostPosted: Sun May 11, 2008 11:15 am    Post subject: Reply with quote

Code:
Loop
{
Send, 5
Send, 4
Send, 7
sleep,180000
Send, 8
Sleep, 6000
}

Difficult to understand what you want. Confused
Back to top
Lexikos



Joined: 17 Oct 2006
Posts: 2605
Location: Australia, Qld

PostPosted: Fri May 16, 2008 8:40 am    Post subject: Reply with quote

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
View user's profile Send private message
BoBo²
Guest





PostPosted: Fri May 16, 2008 10:29 am    Post subject: Reply with quote

Quote:
Can anybody help me out?
This subject line is useless. Mad
Back to top
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group