Extending Flash |
|
|
|
| Objects > Project object > project.items | |||
Flash 8.
project.items
Read-only property; an array of ProjectItem objects (see ProjectItem object) contained in the project.
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);
}
fl.getProject(), ProjectItem object
|
|
|
|