MovieClip._height

Availability

Flash Player 4.

Usage

my_mc._height

Description

Property; the height of the movie clip, in pixels.

Example

The following code example sets the height and width of a movie clip when the user clicks the mouse button.

onClipEvent(mouseDown) {
  _width=200;
  _height=200;
}