Forum Migration Notice
We're transitioning to a more modern community platform by the end of this year. Learn about the upcoming changes and what to expect.

Full View macro

Paste this into TheRobotStudioProject and run it from RS with
Tools>Macro>Macros

Sub FullScreen()
'You have to run this from RobotStudio and not from the code window
    SendKeys "%1", True 'Browser window
    SendKeys "%2", True 'Output window
    SendKeys "%3", True 'Properties window
    'SendKeys "%4", True 'Status bar
'This will turn all Toolbars invisible
    Dim cb As CommandBar
    For Each cb In RSE.CommandBars
        If cb.Name <> "Menu Bar" Then   'without this the menus would be gone to
            cb.Visible = False
        End If
    Next cb
End Sub

I will put this into my next update of the JohnsBar...

image