Hi Tony, actually the same old Hide script should still work... 
 
To get the same result on a keyboard shortcut as the left click on the Hide button, use the following for the command part: 
 
script:moi.geometryDatabase.hide(); 
 
 
If you want to have one that is the same as the right-click on the Hide button for the Isolate function, then use this: 
 
script:moi.geometryDatabase.isolate(); 
 
 
And if you want one that is the same as Ctrl+click on the Hide button for the "show subset" function (where it lets you pick just some of the hidden objects to show rather than showing all), use this: 
 
script:moi.geometryDatabase.showSubset(); 
 
 
      - Michael 
 |