Jump to content

hi, id like to know how to keep sending different keys with different time


Go to solution Solved by HiNoTora,

Recommended Posts

Posted

hi, id like to know how to keep sending different keys with different time.. um dunno how to ask

while 1

Send("{F4}")
Sleep(500)
Send("{F4}")
Sleep(500)          ; first of loop
Send("{F4}")
Sleep(500)
Send("{F4}")
Sleep(500) 

Send("{F8}")         ; Second loop
Sleep(15000) 

Send("{F10}")        ; third loop
Sleep(15000) 


Wend

So how i can make those 3 to ... x.x my english sucks..

i dont want my script to go from  sending F4 to Send F10. I want it has 3 loops what has its own downtime.

Posted

Hi HiNoTora,

can you please tell us which program you try to automate? Send isn't very reliable and might interfere with user actions. I'd recommend ControlSend etc.

My UDFs and Tutorials:

  Reveal hidden contents

 

  • Solution
Posted
  On 1/1/2014 at 5:09 PM, water said:

Hi HiNoTora,

can you please tell us which program you try to automate? Send isn't very reliable and might interfere with user actions. I'd recommend ControlSend etc.

I need to send keys, there are no controlsend func

Posted

;Sleep(3000)
while 1
 _FirstLoop()
 _SecondLoop()
 _ThirdLoop()
Wend
Func _FirstLoop()
 Send("{F4}")
 Sleep(500)
 Send("{F4}")
 Sleep(500)          ; first of loop
 Send("{F4}")
 Sleep(500)
 Send("{F4}")
 Sleep(500)
EndFunc
Func _SecondLoop()
 Send("{F8}")         ; Second loop
 Sleep(15000)
EndFunc
Func _ThirdLoop()
 Send("{F10}")        ; third loop
 Sleep(15000)
EndFunc

There are several ways to do it. And as Water said if it interacts an app then controlsend would be better.
Anyway here you go.

Happy new year

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...