|
Flash CS4 Resources |
presetItem.isFolderAvailabilityFlash CS4 Professional. UsagepresetItem.isFolder DescriptionRead-only property: a Boolean value that specifies whether the item in the Motion Presets panel is a folder (true) or a preset (false). ExampleThe
following example shows that the first item in the Motion Presets
panel is a folder and the second is a preset:
var presetItemArray=fl.presetPanel.items; fl.trace(presetItemArray[0].isFolder); fl.trace(presetItemArray[1].isFolder); |