| Line 1: |
Line 1: |
| | + | <span style="color: #4527a0; font-size: 24px;"> |
| | + | '''Fixed number '''</span> |
| | <pre style="background-color: #ACC8E5; color: #112A46; border-radius: 10px; padding: 10px;"> | | <pre style="background-color: #ACC8E5; color: #112A46; border-radius: 10px; padding: 10px;"> |
| − | This action can be used to repeat one or more other actions. It will repeat either a fixed number of times, or only while a certain condition is met.
| + | Allows one or more actions to be repeated a fixed number of times. |
| | | | |
| − | In many cases it will be sensible to use a wait before next within the loop to prevent very rapid firing of lots of actions.
| + | Selecting this option allows the user to specify exactly how many times the actions should be performed within the loop. |
| | + | |
| | + | It is ideal for situations where a fixed number of iterations is required, ensuring precision and control in the execution of the macro. |
| | + | </pre><br/> |
| | + | <span style="color: #4527a0; font-size: 24px;"> |
| | + | '''While 'condition'''</span> |
| | + | <pre style="background-color: #ACC8E5; color: #112A46; border-radius: 10px; padding: 10px;"> |
| | + | Before executing any instruction inside the loop, the condition is first evaluated. |
| | + | |
| | + | If the condition is true, the code inside the loop is executed. |
| | + | |
| | + | This process of evaluating the condition and executing the code is repeated until the condition becomes false. |
| | + | |
| | + | If the condition is false from the start, the code inside the loop is not executed at all. |
| | + | </pre><br/> |
| | + | <span style="color: #4527a0; font-size: 24px;"> |
| | + | '''Do once and repeat while 'condition'''</span> |
| | + | <pre style="background-color: #ACC8E5; color: #112A46; border-radius: 10px; padding: 10px;"> |
| | + | In this type of loop, the actions inside the loop are executed once before the condition is evaluated for the first time. |
| | + | |
| | + | After this first execution, the condition is evaluated. |
| | + | |
| | + | If the condition is true, the loop repeats. If it is false, the loop terminates. |
| | + | |
| | + | 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><br/> |
| | + | <span style="color: #4527a0; font-size: 24px;"> |
| | + | '''Endless Lop (until break)'''</span><br/> |
| | + | |
| | + | <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><br/> |
| | + | <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> |