Skip to content

Latest commit

 

History

History
30 lines (18 loc) · 598 Bytes

File metadata and controls

30 lines (18 loc) · 598 Bytes

document.screenOutline - dropped

Availability

Flash MX 2004. Dropped in Adobe Animate.

Usage

document.screenOutline

Description

Dropped in Adobe Animate.

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);

See also

document.allowScreens() - dropped