Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 689 Bytes

File metadata and controls

23 lines (14 loc) · 689 Bytes

fl.createNewDocListType

Availability

Flash MX 2004.

Usage

fl.createNewDocListType

Description

Read-only property; an array of strings that represent the file extensions of the types of documents that can be created. The entries in the array correspond directly (by index) to the entries in the fl.createNewDocList array.

Example

The following example displays the extensions of the types of documents that can be created, in the Output panel:

fl.trace("Number of types " + fl.createNewDocListType.length);
for (i = 0; i < fl.createNewDocListType.length; i++) fl.trace("type: " +
fl.createNewDocListType[i]);