540 Chapter 12: ActionScript Dictionary
MovieClip._visible
Availability
Flash Player 4.
Usage
my_mc._visible
Description
Property; a Boolean value that indicates whether the movie clip specified by my_mc is visible.
Movie clips that are not visible (
_visible property set to false) are disabled. For example, a
button in a movie clip with
_visible set to false cannot be clicked.
See also
Button._visible, TextField._visible
MovieClip._width
Availability
Flash Player 4 as a read-only property.
Usage
my_mc._width
Description
Property; the width of the movie clip, in pixels.
Example
The following example sets the height and width properties of a movie clip when the user clicks
the mouse.
onclipEvent(mouseDown) {
_width=200;
_height=200;
}
See also
MovieClip._height