346 Chapter 12: ActionScript Dictionary
ContextMenuItem.visible
Availability
Flash Player 7.
Usage
menuItem_cmi.visible
Description
Property; a Boolean value that indicates whether the specified menu item is visible when the Flash
Player context menu is displayed. By default, this property is
true.
continue
Availability
Flash Player 4.
Usage
continue
Parameters
None.
Returns
Nothing.
Description
Statement; appears within several types of loop statements; it behaves differently in each type
of loop.
In a
while loop, continue causes the Flash interpreter 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 the Flash interpreter 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 the Flash interpreter 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 the Flash interpreter 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.
See also
do while
, for, for..in, while