_height

Availability

Flash Lite 1.0.

Usage

my_mc:_height

Description

Property (read-only); the height of the movie clip, in pixels.

Example

The following example of event handler code sets the height of a movie clip when the user clicks the mouse button:

on(release) {
    tellTarget("my_mc") {
        _height = 200;
    }
}