User Guide
Item object 301
Description
Property; a Boolean value. If this property is true, the item is exported for runtime sharing.
You can also set the
item.linkageExportForAS and item.linkageExportInFirstFrame
properties to
true.
If you set this property to true, the
item.linkageImportForRS property must be set to
false. Also, you must specify an identifier (item.linkageIdentifier) and a URL
(
item.linkageURL).
Example
The following example sets this property for the specified library item:
fl.getDocumentDOM().library.items[0].linkageExportForRS = true;
item.linkageExportInFirstFrame
Availability
Flash MX 2004.
Usage
item.linkageExportInFirstFrame
Description
Property; a Boolean value. If true, the item is exported in the first frame; if false, the item is
exported on the frame of the first instance. If the item does not appear on the Stage, it isn’t
exported.
This property can be set to
true only when item.linkageExportForAS and/or
item.linkageExportForRS are set to true.
Example
The following example specifies that the specified library item is exported in the first frame:
fl.getDocumentDOM().library.items[0].linkageExportInFirstFrame = true;