User Guide
UIObject class 817
UIObject.left
Availability
Flash Player 6 (6.0 79.0).
Edition
Flash MX 2004.
Usage
componentInstance.left
Description
Property (read-only); a number indicating the left edge of the object, in pixels, relative to its
parent. To set this property, call
UIObject.move().
UIObject.load
Availability
Flash Player 6 (6.0 79.0).
Edition
Flash MX 2004.
Usage
Usage 1:
on(load){
...
}
Usage 2:
listenerObject = new Object();
listenerObject.load = function(eventObject){
...
}
componentInstance.addEventListener("load", listenerObject)
Description
Event; notifies listeners that the subobject for this object is being created.
The first usage example uses an
on() handler and must be attached directly to a
component instance.