64 bit version question

 From:  Michael Gibson
5885.11 In reply to 5885.7 
Hi mir4ea, here's the first script:

script: /* Show edges on selected objects, hide edges on all others */ var breps = moi.geometryDatabase.getObjects().getBreps(); for ( var i = 0; i < breps.length; ++i ) { var brep = breps.item(i); brep.getEdges().setProperty( 'hidden', !brep.selected ); }


If you set this script on a shortcut key, when it is triggered it will make all edges of the selected objects to be shown, and all edges on unselected objects to be hidden. So it's kind of like "activate edges on selected objects, deactivate others".

- Michael