Changes

no edit summary
Line 28: Line 28:     
The distinguishing feature here is that the code inside the loop is guaranteed to be executed at least once, regardless of the initial condition.
 
The distinguishing feature here is that the code inside the loop is guaranteed to be executed at least once, regardless of the initial condition.
 +
</pre>
 +
 +
* ''''' Endless Lop (until break) '''''
 +
<pre style="background-color: #ACC8E5; color: #112A46; border-radius: 10px; padding: 10px;">
 +
This is a type of loop that runs indefinitely until a 'Break From Loop' action is encountered.
 +
 +
This type of loop is ideal for situations where you need to constantly repeat the actions within the macro.
 +
</pre>
 +
<pre style="background-color: #FFFF99; color: #112A46; border-radius: 10px; padding: 10px;">
 +
The loop will continue until a 'Break From Loop' action is explicitly triggered to stop its execution.
 +
 +
It is recommended to use this functionality in combination with well-defined conditions that determine when the 'Break From Loop' action must be executed to end the loop.
 +
 +
In addition, consider including 'Wait Before Next Action' actions within the loop.
 
</pre>
 
</pre>
editors
1,590

edits