User Guide

1370 UIObject class
UIObject.height
Availability
Flash Player 6 (6.0.79.0).
Edition
Flash MX 2004.
Usage
componentInstance.height
Description
Property (read-only); a number indicating the height of the object, in pixels. To change the
height property, call UIObject.setSize().
Example
The following example increases the check box height:
myCheckbox.setSize(myCheckbox.width, myCheckbox.height + 10);
UIObject.hide
Availability
Flash Player 6 (6.0.79.0).
Edition
Flash MX 2004.
Usage
Usage 1:
var listenerObject:Object = new Object();
listenerObject.hide = function(eventObject:Object) {
// ...
};
componentInstance.addEventListener("hide", listenerObject);
Usage 2:
on (hide) {
// ...
}