Hide construction lines

 From:  Michael Gibson
8459.2 In reply to 8459.1 
Hi Tom,

re:
> How can I hide my current set of construction lines (and makem them visible again ?

Try putting the following script on a shortcut key:

script: /* Hide/show construction lines */ var clines = moi.geometryDatabase.getObjects().getConstructionLines(); if ( clines.length > 0 ) { clines.setProperty( 'hidden', !clines.item(0).hidden ); }

That should then toggle hide/show of all construction lines when you trigger it.

- Michael

EDITED: 8 Jun 2017 by MICHAEL GIBSON