Skip to content

Latest commit

 

History

History
53 lines (32 loc) · 889 Bytes

File metadata and controls

53 lines (32 loc) · 889 Bytes

Library.selectAll()

Availability

Flash MX 2004.

Usage

Library.selectAll([bSelectAll])

Parameters

bSelectAll

Type

boolean?

Description

Specifies whether to select or deselect all items in the library. Omit this parameter or use the default value of true to select all the items in the library; false deselects all library items. This parameter is optional.

Returns

Nothing.

Type

void

Description

Method; Selects or deselects all items in the library.

Example

The following examples select all the items in the library:

fl.getDocumentDOM().library.selectAll();
fl.getDocumentDOM().library.selectAll(true);

The following examples deselect all the items in the library:

fl.getDocumentDOM().library.selectAll(false);
fl.getDocumentDOM().library.selectNone();