Mazdaspeed Posted October 26, 2008 Posted October 26, 2008 hi how do i make a script like press 1 wait for 2 seconds then press 2 wait 5 seconds and then loop 4x ^^ thank you
Developers Jos Posted October 26, 2008 Developers Posted October 26, 2008 Welcome. Open the helpfile and look for: Sleep() Send() Jos SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
thenewkid Posted October 26, 2008 Posted October 26, 2008 Wecome to autoit you could read the help file but as your new is this what our wanting $1 = 0 While 1 $1 += 1 Send("1") Sleep(2000) Send("2") Sleep(5000) If $1 = 4 Then MsgBox(0,"test","I sent 1 and waited 2 sec then sent 2 and waited 5 sec") Exit EndIf WEnd thenewkid some of my scripts check them out and give feedback so i can learn from them :)autoclicker a autoclickernote taker a script to take notes with
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now