|
|
document.screenOutline
AvailabilityFlash
MX 2004.
Usagedocument.screenOutline
DescriptionRead-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.
ExampleThe
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);
|