fl.createNewTemplateList
#### Availability
Flash MX 2004.
#### Usage
fl.createNewTemplateList
#### Description
Read-only property; an array of strings that represent the various types of templates that can be created.
#### Example
The following example displays the types of templates that can be created, in the Output panel:
javascript
fl.trace("Number of template types: " + fl.createNewTemplateList.length); for (i = 0; i <
fl.createNewTemplateList.length; i++) fl.trace("type: " + fl.createNewTemplateList[i]);