Hide command bar

 From:  Michael Gibson
7907.3 In reply to 7907.1 
Hi Tom, do you mean the bottom command bar that contains the File menu, Save, Undo, Redo buttons in it? Or do you mean the view controls toolbar at the bottom of the viewports that has the Area, Zoom, Pan, and Reset buttons in it?

For the view controls toolbar, there's a checkbox for turning those on or off under Options > View > "Show view controls" checkbox.

For the bottom command bar with the File menu, use the following script on a shortcut key:

script: /* Toggle command bar on/off */ var cb = moi.ui.getUIPanel( 'moi://ui/CommandBar.htm' ); var body = cb.document.body; body.style.display = (body.style.display == '' ? 'none' : '');

- Michael