Found a work around with Auto Hotkey. this script lets you hide menu bar and title bar and maximizes over the taskbar with ALT + F11 .. press alt+ f11 again and it'll put everything back to normal.
before:
https://imgur.com/GxAgCJm
after:
https://imgur.com/BD1kwmM
#IfWinActive Studio One
!F11::
if menu_toggle := !menu_toggle
{
handle := DllCall("GetMenu", ptr, WinActive("A"))
DllCall("SetMenu", ptr, WinActive("A"), ptr, 0)
WinSet, Style, -0x1c00000, ;CAPTION|DLGFRAME|MAXIMIZE
hMenu := handle
WinMaximize
return
}
else
{
DllCall("SetMenu", ptr, WinActive("A"), ptr, hMenu)
WinSet, Style, +0x1c00000, ;CAPTION|DLGFRAME|MAXIMIZE
hMenu := 0
WinRestore
return
}