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

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.

Link to comment
Share on other sites

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:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Link to comment
Share on other sites

;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

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

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