Shortcut for collapsing palettes for scene browser ?

Next
 From:  svenster
11316.1 
Hi Forum. I tend to have scene browser "inside" pane to maximize drawing area. This results in a scene browser with little area for objects as I leave others panes expanded as I'm working. Is there a shortcut to collapse all palettes other than scene browser ? Anybody make an icon set that shows shortcut keys ?

Sven
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  Michael Gibson
11316.2 In reply to 11316.1 
Hi Sven, the scene browser "inside" mode is primarily intended to be used when you have a large monitor so there is a lot of vertical space available in the side pane.

re:
> Is there a shortcut to collapse all palettes other than scene browser ?

You can set up this on a shortcut key to do that:

script: /* Collapse side pane palettes except scene browser */ var headers = moi.ui.sidePane.document.getElementsByTagName( 'moi:paletteheader' ); for ( var i = 0; i < headers.length; ++i ) { var header = headers[i]; if ( header.id != 'SceneBrowserHeader' ) { var tags = header.getElementsByTagName( 'moi:tabcontainer' ); if ( tags.length == 1 ) { tags[0].activeTab = ''; } } }


- Michael
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
 From:  svenster
11316.3 In reply to 11316.2 
Thanks for script Michael, works great.

Sven
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged
 

Reply to All Reply to All