User Guide
176 Objects
Description
Method; posts an XMLUI dialog box. See fl.xmlui.
Example
The following example loads the Test.xml file and displays each property contained within it:
var obj = fl.getDocumentDOM().xmlPanel(fl.configURI + "Commands/Test.xml");
for (var prop in obj) {
fl.trace("property " + prop + " = " + obj[prop]);
}
document.zoomFactor
Availability
Flash 8.
Usage
document.zoomFactor
Description
Property; specifies the zoom percent of the Stage at author time. A value of 1 equals 100%
zoom, 8 equals 800%, .5 equals 50%, and so on.
Example
The following example sets the zoom factor of the Stage to 200%.
fl.getDocumentDOM().zoomFactor = 2;