Quick way to hide/show my toolbars

Is there a quick way to show/hide my toolbars? (Not show/hide one at a time, but all I am using)

Had the same question & found yours. What worked for me was to customize a new toolbar to include all the toolbars I wanted quick access to - much quicker to display/ hide than going through the View menu. In Impress, Tools> Customize> + (upper right side) > Enter Toolbar Name > Save in (LibreOffice Impress). Then from the dropdown box “Standard”, find your toolbar and add the Functions you want to it from the left. Right arrow adds it to the toolbar, left arrow takes it off.

@vrush That’s a great answer! Why is it a comment? :wink:

Hi

Would not ViewFull Screen be what you need? You can toggle with Ctrl+Shift+J

Regards

@PYS I believe this time yours is the better and faster solution :slight_smile:

This is good if you want a single fullscreen window, but doesn’t help if you want multiple windows alongside each other on a single monitor.

Hello,

You can do this with a macro. The macro is a toggle; if toolbars on it will turn off; if toolbars off it will turn on. Macro:

Sub Toggle_Toolbar
     Dim oLayoutManager as Object
     oLayoutManager = thisComponent.CurrentController.Frame.LayoutManager
     If oLayoutManager.isVisible then
       	oLayoutManager.visible = 0
     Else
     	oLayoutManager.visible = 1
     End If
     oLayoutManager.showElement("private:resource/menubar/menubar")
End Sub

It would be best to add this as a new menu/item ( use Tools->Customize then Menu tab) so as to be able to toggle on/off when wanted. If you are unfamiliar with either macros or adding a menu item, see the LO Getting Started Documentation, Chapters 13 & 14 for clarification.

Edit:

Sample with new menu item after Help: ToolBarsOnOff.odt

I may be wrong but I believe you also would need to install Java JRE for this to work.

If this answers your question please click on the :heavy_check_mark: (upper left area of answer).