screenOutline.getSelectedScreens()

Availability

Flash MX 2004.

Usage

screenOutline.getSelectedScreens()

Parameters

None.

Returns

An array of selected Screen objects (see Screen object).

Description

Method; returns an array of Screen objects that are currently selected in the screen outline.

Example

The following example stores the selected Screen objects in the myArray variable and displays the screen names in the Output panel:

var myArray = fl.getDocumentDOM().screenOutline.getSelectedScreens();
for (var i in myArray) { 
    fl.trace(myArray[i].name)
}