Extending Flash |
|
|
|
| Objects > Document object > document.disableFilter() | |||
Flash 8.
document.disableFilter(filterIndex)
filterIndex An integer representing the zero-based index of the filter in the Filter list.
Nothing.
Method; disables the specified filter in the Filters list.
The following example disables the first and third filters (index values of 0 and 2) in the Filters list from the selected object(s):
fl.getDocumentDOM().disableFilter(0); fl.getDocumentDOM().disableFilter(2);
document.addFilter(), document.changeFilterOrder(), document.disableAllFilters(), document.disableOtherFilters(), document.enableFilter(), document.getFilters(), document.removeFilter(), Filter object
|
|
|
|