Dtvscrotes Posted February 9, 2009 Posted February 9, 2009 I need some code that will loop with do and until. I want the variable inside of do and until to change each loop. Example. $1 = 1 $2 = 2 $endloop = 0 do msgbox(1,"A","1 +" & $1 & "=" & 1+$1) $endloop = $endloop + 1 until $endloop = 2When i run this code a msgbox appears saying 1+1=1. The second time around(in the loop) I want it to use $2 instead of $1. Then it would repeat but with a new msgbox saying 1+2 = 3. I could go on with 1+3=4 etc.I use the $endloop variable to end the loop once it loops for the second time.I want $2 to be used the second time around. I was thinking maybe like a rotating variable that each time it is called upon it would change to a second state. I looked into arrays and couldn't figure how they work but that may be the solution. I know i could type out the second loop and not use do/until but in my case I may want this to go through the process 1000 times or more so I don't want to copy/paste the msgbox line 1000 times and changing the variable each line.
Developers Jos Posted February 9, 2009 Developers Posted February 9, 2009 Have a look in the Helpfile at : For ... Next 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.
KaFu Posted February 9, 2009 Posted February 9, 2009 Or try something like this ... $counter = 1 Global $array[2] = ['1','2'] Do If Mod($counter, 2) = 0 Then;even MsgBox(0, 'Even: ' & $counter, $array[0]) $array[0] += 1 Else;odd MsgBox(0, 'Odd:' & $counter, $array[1]) $array[1] += 2 EndIf $counter += 1 Until $counter = 7 OS: Win10-22H2 - 64bit - German, AutoIt Version: 3.3.16.1, AutoIt Editor: SciTE, Website: https://funk.eu AMT - Auto-Movie-Thumbnailer (2024-Oct-13) BIC - Batch-Image-Cropper (2023-Apr-01) COP - Color Picker (2009-May-21) DCS - Dynamic Cursor Selector (2024-Oct-13) HMW - Hide my Windows (2024-Oct-19) HRC - HotKey Resolution Changer (2012-May-16) ICU - Icon Configuration Utility (2018-Sep-16) SMF - Search my Files (2024-Oct-20) - THE file info and duplicates search tool SSD - Set Sound Device (2017-Sep-16)
Dtvscrotes Posted February 9, 2009 Author Posted February 9, 2009 cool 2 replies in like 5 minutes. thanks.
Dtvscrotes Posted February 9, 2009 Author Posted February 9, 2009 I solved my problem and this is how it works. $counter = 0 Dim $array[3] = ["first","second","third"] Do msgbox(1,"Hello","This should be the " & $array[$counter] & " message") $counter = $counter+1 Until $counter = 3 If i make the array contain more variables then this code could count messages all day and it works for my situation thanks guys for the comments.
KaFu Posted February 9, 2009 Posted February 9, 2009 For such a purpose for...next would be definitely more easy for $i = 1 to 3 MsgBox(0,'','Message ' & $i) Next OS: Win10-22H2 - 64bit - German, AutoIt Version: 3.3.16.1, AutoIt Editor: SciTE, Website: https://funk.eu AMT - Auto-Movie-Thumbnailer (2024-Oct-13) BIC - Batch-Image-Cropper (2023-Apr-01) COP - Color Picker (2009-May-21) DCS - Dynamic Cursor Selector (2024-Oct-13) HMW - Hide my Windows (2024-Oct-19) HRC - HotKey Resolution Changer (2012-May-16) ICU - Icon Configuration Utility (2018-Sep-16) SMF - Search my Files (2024-Oct-20) - THE file info and duplicates search tool SSD - Set Sound Device (2017-Sep-16)
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