|
Flash CS4 Resources |
presetPanel.itemsAvailabilityFlash CS4 Professional. UsagepresetPanel.items DescriptionProperty; an array of presetItem objects in the Motion Presets panel (see presetItem object). Each item in the array represents either a folder or a preset. ExampleThe following code displays the full pathnames of the items in the Motion Presets panel: var itemArray = fl.presetPanel.items;
var length = itemArray.length
for (x=0; x<length; x++) {
fl.trace(itemArray[x].path);
}
See also |