A-C > continue
continueSyntax
continue;
Arguments
None.
Description
Action; appears within several types of loop statements.
In a while
loop, continue
causes Flash to skip the rest of the loop body and jump to the top of the loop, where the condition is tested.
In a do...while
loop, continue
causes Flash to skip the rest of the loop body and jump to the bottom of the loop, where the condition is tested.
In a for
loop, continue
causes Flash to skip the rest of the loop body and jump to the evaluation of the for
loop's post-expression.
In a for...in
loop, continue
causes Flash to skip the rest of the loop body and jump back to the top of the loop, where the next value in the enumeration is processed.
Player
Flash 4 or later.
See also
do... while for for..in while