continue

Allows you to skip commands inside the innermost FOR or WHILE loop and continue with the next iteration of the loop.
When Adams View encounters a CONTINUE command inside a loop, it skips over the remaining commands of the loop and goes directly to the END of the innermost loop. Adams View tests the loop condition and continues looping if the condition is still valid.
The CONTINUE command affects only the innermost FOR or WHILE loop.

Format:

CONTINUE

Example:

variable create variable_name=ip integer_value=0
while condition=(ip < 5)
variable modify variable_name=ip integer_value=(eval(ip+1))
if condition=(ip == 3)
continue
end
marker create marker_name=(eval("MAR"//ip)) &
location=(eval(ip-1)),0,0
end
variable delete variable_name=ip
In this example, Adams View creates four markers on the default part: MAR1, MAR2, MAR4, and MAR5. Adams View skips MAR3, because when IP evaluates to 3, Adams View encounters the CONTINUE command and skips to the END of the WHILE loop.
Results of CONTINUE Example
 
Name
Loc_X
Loc_Y
Loc_Z
MAR1
0.0
0.0
0.0
MAR2
1.0
0.0
0.0
MAR4
3.0
0.0
0.0
MAR5
4.0
0.0
0.0