M > MovieClip._height |
![]() ![]() ![]() |
MovieClip._height
Availability
Flash Player 4.
Usage
myMovieClip
._height
Description
Property; sets and retrieves 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.
onClipEvent(mouseDown) {
_width=200;
_height=200;
}
![]() ![]() ![]() |