User Guide
80 Objects
Returns
A Boolean value: true if document.screenOutline can be used safely; false otherwise.
Description
Method; use before using the document.screenOutline property. If this method returns the
value
true, you can safely access document.screenOutline; Flash displays an error if you
access
document.screenOutline in a document without screens.
Example
The following example determines whether screens methods can be used in the current
document:
if(fl.getDocumentDOM().allowScreens()) {
fl.trace("screen outline is available.");
}
else {
fl.trace("whoops, no screens.");
}
See also
document.screenOutline
document.arrange()
Availability
Flash MX 2004.
Usage
document.arrange( arrangeMode )
Parameters
arrangeMode Specifies the direction in which to move the selection. Acceptable values are
"back", "backward", "forward", and "front". It provides the same capabilities as these
options provide on the Modify >Arrange menu.
Returns
Nothing.
Description
Method; arranges the selection on the Stage. This method applies only to non-shape objects.