|

AutoIT simple tutorial on LOOPS – IF, FOR LOOP, WHILE LOOP, DO LOOP

Autoit is a very simple yet powerful tool to automate simple scripts.

Today, we are looking at LOOPS.

Credit to 403forbidden403. You can check her on Youtbue

This is the resulting message box:

And the message box will be same as above

auto-it-if-message-box

The result of the DO LOOP

do-loop

Result of WHILE LOOP

while-loop-tutorial

 

; FOR LOOP
; lets create a FOR LOOP and with a variable initialised to 4 .
; lets then step down in decrements of 1 to positive 1. hence we are counting down from 4 to 1.
;so as soon as we get to the figure we are stepping down to , which in this case is positive one, our statement will break and continue
;to the statement outside the FOR LOOP.

Result of FOR LOOP

for-loop-autoit

Want more information like this?

Similar Posts

Leave a Reply

Your email address will not be published. Required fields are marked *