simonwar Posted September 21, 2007 Share Posted September 21, 2007 I have been using While 1 <the task> WEnd to carry out a task repeatedly. How do I modify this method so I can carry out the task "X" times? An input popup asking the question "How may times do you want to repeat ths task" would be ideal? Any help appreciated, thanks, Simon. Link to comment Share on other sites More sharing options...
cdkid Posted September 21, 2007 Share Posted September 21, 2007 (edited) there are several easy ways... use a FOR loop.. for $i = 0 to 100 <task> next or in a while.... $i = 0 while $i < 100 <task> $i += 1 WEnd or a do loop... $i = 0 Do <task> $i +=1 until $i = 100 ~cdkid Edited September 21, 2007 by cdkid AutoIt Console written in C#. Write au3 code right at the console :D_FileWriteToLineWrite to a specific line in a file.My UDF Libraries: MySQL UDF Library version 1.6 MySQL Database UDF's for AutoItI have stopped updating the MySQL thread above, all future updates will be on my SVN. The svn location is:kan2.sytes.net/publicsvn/mysqlnote: This will still be available, but due to my new job, and school hours, am no longer developing this udf.My business: www.hirethebrain.com Hire The Brain HireTheBrain.com Computer Consulting, Design, Assembly and RepairOh no! I've commited Scriptocide! Link to comment Share on other sites More sharing options...
Demonic Posted September 21, 2007 Share Posted September 21, 2007 Yeah, like he said, but for the input.. $i = 0 $repeats = InputBox("Repeats", "How many loops?", "", 300, 100, 300, 300) While( $i < $repeats ) <the task> $i = ( $i + 1 ) WEnd Link to comment Share on other sites More sharing options...
simonwar Posted September 21, 2007 Author Share Posted September 21, 2007 I get an error with the syntax $repeats=InputBox("Repeats", "How many Loops?", "", 300,100,300,300) saying "Error:Incorrect number of parameters in function call" Any ideas, thanks, Simon ? Link to comment Share on other sites More sharing options...
weaponx Posted September 21, 2007 Share Posted September 21, 2007 It means exactly what the error says, check the help file: You have: $repeats=InputBox("Repeats", "How many Loops?", "", 300,100,300,300) Use this: $repeats=InputBox("Repeats", "How many Loops?", "") Link to comment Share on other sites More sharing options...
simonwar Posted September 21, 2007 Author Share Posted September 21, 2007 I get it, its just i didn't know how to resolve it? However, I tried to resolve and followed the syntax assistant to the letter, and ended up with it working, but whatever number i I entered, I always got a "3" displayed, but the loop worked the correct number of times. Resorted to your simpler method ..... works spot on. Thanks, Simon. Link to comment Share on other sites More sharing options...
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