Extending Flash |
|
|
|
| Objects > library object > library.selectAll() | |||
Flash MX 2004.
library.selectAll([bSelectAll])
bSelectAll A Boolean value that 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.
Nothing.
Method; selects or deselects all items in the library.
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();
|
|
|
|