214
Chapter 3: Objects
Property summary for the library object
The following property is available for the library object.
library.addItemToDocument()
Availability
Flash MX 2004.
Usage
library.addItemToDocument(
position
[,
namePath
] )
Parameters
position
A point that specifies the
x,y
position of the center of the item on the Stage.
namePath
A string that specifies the name of the item. If the item is in a folder, you can specify
its name and path using slash notation. If
namePath
is not specified, the current library selection
is used. This parameter is optional.
Returns
A Boolean value:
true
if the item is successfully added to the document;
false
otherwise.
Description
Method; adds the current or specified item to the Stage at the specified position.
Example
The following example adds the currently selected item to the Stage at the (3, 60) position:
fl.getDocumentDOM.library.addItemToDocument({x:3, y:60});
The following example adds the item Symbol1 located in folder1 of the library to the Stage at the
(550, 485) position:
fl.getDocumentDOM().library.addItemToDocument({x:550.0, y:485.0}, "folder1/
Symbol1");
library.selectAll()
Method; selects or deselects all items in the library.
library.selectItem()
Method; selects a specified library item.
library.selectNone()
Method; deselects all the library items.
library.setItemProperty()
Method; sets the property for all selected library items (ignoring
folders).
library.updateItem()
Method; updates the specified item.
Property
Description
library.items
Property; an array of item objects in the library
Method
Description
Содержание FLASH MX 2004-FLASH JAVASCRIPT DICTIONARY
Страница 1: ...Flash JavaScript Dictionary ...
Страница 16: ...16 Contents ...
Страница 40: ...40 Chapter 2 Top level functions ...
Страница 368: ...368 Chapter 3 Objects ...
Страница 386: ...386 Chapter 4 C Level Extensibility ...