turning off preselection highlighting

 From:  Michael Gibson
8435.32 In reply to 8435.31 
Hi Pior, actually for those selection filter shortcuts you would probably want them like this:

script: /* Turn on edge selection filter */ moi.selection.clearSelectionFilters(); moi.selection.setFilter( 'Types', 'Edges', true );

script: /* Turn on face selection filter */ moi.selection.clearSelectionFilters(); moi.selection.setFilter( 'Types', 'Faces', true );

These ones will clear any current filter before setting the new one.

- Michael