document.screenOutline

Availability

Flash MX 2004.

Usage

document.screenOutline

Description

Read-only property; the current ScreenOutline object for the document. Before accessing the object for the first time, make sure to use document.allowScreens() to determine whether the property exists.

Example

The following example displays the array of values in the screenOutline property:

var myArray = new Array(); 
for(var i in fl.getDocumentDOM().screenOutline) { 
    myArray.push(" "+i+" : "+fl.getDocumentDOM().screenOutline[i]) ; 
}  
fl.trace("Here is the property dump for screenOutline: "+myArray);