V5 beta Jul-30-2024 available now

 From:  Michael Gibson
11493.30 In reply to 11493.27 
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