Extending Flash |
|
|
|
| Objects > Document object > document.disableOtherFilters() | |||
Flash 8.
document.disableOtherFilters(enabledFilterIndex)
enabledFilterIndex An integer representing the zero-based index of the filter that should remain enabled after other filters are disabled.
Nothing.
Method; disables all filters except the one at the specified position in the Filters list.
The following example disables all filters except the second filter in the list (index value of 1):
fl.getDocumentDom().disableOtherFilters(1);
document.addFilter(), document.changeFilterOrder(), document.disableAllFilters(), document.disableFilter(), document.enableFilter(), document.getFilters(), document.removeFilter(), Filter object
|
|
|
|