Guest Hadezz Posted February 20, 2005 Posted February 20, 2005 $i = 0While 1 Do $i = 1 Send("{F2}") Sleep(250) Send("{F1}") Sleep(1500) Send("{F6}") Sleep(6000) Send("{F3}") Sleep(650) Send("{F3}") Sleep(650) $i = $i + 1 Until $i = 17Send("{F6}")Sleep(1500)Send("{F7}")Sleep(1500)WEndtrying to get the Do loop to run 17 times than have the other part run .. than it go bakc and do the Do loop 17 etc etc etcany1 have any ideas?
SlimShady Posted February 20, 2005 Posted February 20, 2005 Here you go. While 1 For $i = 1 To 17 Send("{F2}") Sleep(250) Send("{F1}") Sleep(1500) Send("{F6}") Sleep(6000) Send("{F3}") Sleep(650) Send("{F3}") Sleep(650) Next Send("{F6}") Sleep(1500) Send("{F7}") Sleep(1500) WEnd
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