RobotStudio event

Full View macro

Options

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