User Guide
86 Objects
If you then issue the command fl.getDocumentDOM().changeFilterOrder(0, 2), the
filters are rearranged as follows:
Before: gradientBevelFilter, blurFilter, dropShadowFilter, glowFilter
After: blurFilter, dropShadowFilter, gradientBevelFilter, glowFilter
Example
The following example moves the filter that is currently in the second position in the Filter list
to the first position:
fl.getDocumentDOM().changeFilterOrder(1,0);
See also
document.addFilter(), document.disableFilter(), document.enableFilter(),
document.getFilters(), document.removeFilter(), Filter object
document.clipCopy()
Availability
Flash MX 2004.
Usage
document.clipCopy()
Parameters
None.
Returns
Nothing.
Description
Method; copies the current selection from the document to the Clipboard.
Example
The following example copies the current selection from the document to the Clipboard:
fl.getDocumentDOM().clipCopy();