Continue
Statement Continue
Use Continue within loops to pass control to the end of the innermost enclosing belonging to a looping construct, such as For or While; at which point the loop continuation condition is re-evaluated.
Syntax Continue
See Also:
Example Script
NUMBER i = 3
WHILE i <= 10
i ++
IF i > 8 THEN
CONTINUE
ELSE
PRINT i
ENDIF
WEND
PRINT "DONE"
Script Output
4
5
6
7
8
DONE