edges

 From:  Michael Gibson
5718.2 In reply to 5718.1 
Hi mir4ea,

> Hallo Michael, tell me pleas is it way to hide edges only on selected objects, or styles?

Here's a script that you can set on a shortcut key, then when you push that key the edges of the selected objects will be hidden:

script: /* Hide edges of selected objects */ var breps = moi.geometryDatabase.getSelectedObjects().getBreps(); for ( var i = 0; i < breps.length; ++i ) breps.item(i).getEdges().setProperty( 'hidden', true ); moi.ui.redrawViewports();

- Michael