Extending Flash |
|
|
|
| Objects > Document object > document.screenOutline | |||
Flash MX 2004.
document.screenOutline
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.
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);
document.allowScreens(), ScreenOutline object
|
|
|
|