Is there a way to hide a toolbar while in Page Sorter view? See attached.
Could at least use a macro to toggle the toolbar. Add the macro icon to the top menu as quick one-click whenever you're in Page Sorter View
Maybe add an "if" scenario
If Page Sorter View = True then toggle toolbar
Sub ToggleToolbar()If CommandBars("Toolbox").Visible ThenCommandBars("Toolbox").Visible = FalseElseCommandBars("Toolbox").Visible = TrueEnd IfEnd Sub
Cool. It works, however upon restoration of the toolbar it positions it in a weird way and not back where it was previously. see attached.
I'm going to try a workaround and move the toolbox to my second screen so thanks Myron for your help.
CorelDRAW already has a Command that allows a one-click toggle of the Toolbox.
Look under Options>Workspace>Customization>Commands, and there is one named, "Toolbox". Drag that command to the toolbar or menu of your choice, or assign a keyboard shortcut for that Command, and you're there.