project.items

Availability

Flash 8.

Usage

project.items

Description

Read-only property; an array of ProjectItem objects (see ProjectItem object) contained in the project.

Example

The following example displays the names of all the items in the project. The names are displayed in the Output panel.

for (i = 0; i < fl.getProject().items.length; i++) {
    fl.trace(fl.getProject().items[i].displayName); 
}

See also

fl.getProject(), ProjectItem object