Shortcut for collapsing palettes for scene browser ?
All  1  2-3

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

 

 
 
Show messages: All  1  2-3