Hi Andreas, also another way to remove names from edges is to set up this on a shortcut key:
script: /* Remove names from edge sub-objects */ var breps = moi.geometryDatabase.getObjects().getBReps(); for ( var i = 0; i < breps.length; ++i ) { breps.item(i).getEdges().setProperty( 'name', '' ); }
That will get rid of the "K2-Balkon-2" that's at the top which is set on an edge sub object.
- Michael
|