Hide unhide

 From:  Larry Fahnoe (FAHNOE)
10220.2 In reply to 10220.1 
Hi Zooen,

I don't have a script that does that exactly, but you might find this Hide/Show script helpful as it gives some better control over selecting which hidden objects to be shown. I have it bound to CTRL+H and use it all the time:

code:
script: /* hide selected objects, or show subset if no selection */ var gd = moi.geometryDatabase; if ( gd.getSelectedObjects().length != 0 ) { gd.hide(); } else { gd.showSubset(); }


I got it from the Forum, I think it was from Michael, but I don't find the thread discussing it.

--Larry