Extending Flash |
|
|
|
| Objects > flash object (fl) > fl.createNewDocList | |||
Flash MX 2004.
fl.createNewDocList
Read-only property; an array of strings that represent the various types of documents that can be created.
The following example displays the types of documents that can be created in the Output panel:
fl.trace("Number of choices " + fl.createNewDocList.length);
for (i = 0; i < fl.createNewDocList.length; i++)
fl.trace("choice: " + fl.createNewDocList[i]);
|
|
|
|