Toolbars and window frame visible in presentation mode

Hi there. I’m trying to screen share a presentation in a videoconference. When I set the presentation within a window so that I can see other documents on my screen, the toolbars are all visible at the top of the window, grayed out. How do I make them go away?

I’m in Mac iOS.

Details, please!

I’m trying to screen share a presentation in a videoconference.

By connecting video output to external VC device (Lifesize,Cisco, Polycom, etc.) or straight off the computer?

If the latter, is it an installed app (Zoom, Skype, MS Teams) or through a web browser (GoToWebinar, MS Teams)?

I’m in Mac iOS.

Apple computer with MacOS, or handheld device with iOS?

I use the following Macros:

Sub hideallBars()
    Dim LayoutManager, LayoutElements
    Dim i As Integer
    LayoutManager = ThisComponent.CurrentController.Frame.LayoutManager
    LayoutElements = LayoutManager.getElements()
    For i = 0 to Ubound( LayoutElements )
       LayoutManager.hideElement( LayoutElements(i).ResourceURL )
    Next
End Sub

Sub ShowallBars()
    Dim LayoutManager, LayoutElements
    Dim i As Integer
    LayoutManager = ThisComponent.CurrentController.Frame.LayoutManager
    LayoutElements = LayoutManager.getElements()
    For i = 0 to Ubound( LayoutElements )
       LayoutManager.showElement( LayoutElements(i).ResourceURL )
    Next
End Sub
1 Like