Studio Developer Manual / Version 2107
Table Of Contents
Finally, you need to enable the new custom filter by invoking editorContext.getEnabledSearchFilterIds().push('...'),
for example, in the init method of a corresponding Studio plugin.
public class FooStudioPluginBase extends StudioPlugin {
override
public function init(editorContext:IEditorContext):void {
super.init(editorContext);
<!-- 'fooFilter' is the FILTER_ID of the added filter panel -->
editorContext.getEnabledSearchFilterIds().push('fooFilter');
}
}


