User Guide

Document object 133
Example
The following example removes all filters from the selected object(s):
fl.getDocumentDOM().removeAllFilters();
See also
document.addFilter(), document.changeFilterOrder(),
document.disableAllFilters(), document.getFilters(), document.removeFilter(),
Filter object
document.removeFilter()
Availability
Flash 8.
Usage
document.removeFilter( filterIndex )
Parameters
filterIndex An integer specifying the zero-based index of the filter to remove from the
selected object(s).
Returns
Nothing.
Description
Method; removes the specified filter from the Filters list of the selected object(s).
Example
The following example removes the first filter (index value 0) from the Filters list of the
selected object(s):
fl.getDocumentDOM().removeFilter(0);
See also
document.addFilter(), document.changeFilterOrder(), document.disableFilter(),
document.getFilters(), document.removeAllFilters(), Filter object