Repeat action

ARME

Active member
I don't understand the difference of " while condition repeat" and "do once and repeat while condition".
You can upload a macro as example.
I din't find anything on the wiki.
 

Dm114

Well-known member
I don't understand the difference of " while condition repeat" and "do once and repeat while condition".
You can upload a macro as example.
I din't find anything on the wiki.
In the 1st case the loop will be executed if the condition is true before entering the loop and then will continue looping "while condition" is true.

In the 2nd case, the loop will be executed at least once, whatever the condition and then will loop "while condition" is true.
 

ARME

Active member
In the 1st case the loop will be executed if the condition is true before entering the loop and then will continue looping "while condition" is true.

In the 2nd case, the loop will be executed at least once, whatever the condition and then will loop "while condition" is true.
Thanks, I got it
 
Top