hi
to rename: right mouse click on tab > setup workspace
to identify which view is used: right mouse click> assign icon> current view icon
new tabs are opening automaticaly when you switch the view inside of a locked tab (tab with locked view). Thus, if you don't want new tabs to appear without your control, check the exisiting tab settings. i guess some of them (maybe the one which u use more often) has a locked view (right click>lock default in this tab is enabled).
if you wish to save space by hiding tabs and everything else above them, you can move them beyond the desktop top border.
here is an autohotkey script for that:
#If WinActive("ahk_class TfrmMyLifeMain")
^#Up:: ;move title bar and menu bar beyond the upper screen margin + increase the window height
WinSet, Style, -0x30000, A
WinMaximize, A
WinGetPos,X,Y,W,H,A ;"A" to get the active window's pos.
Y := Y - 55
H := H + 55
WinMove,A,,%X%,%Y%,%W%,%H%
return
^#Down:: ;move the window back
WinGetPos,X,Y,W,H,A ;"A" to get the active window's pos.
Y := Y + 55
H := H - 55
WinMove,A,,%X%,%Y%,%W%,%H%
return
#IfWinActive
the keys to control the window behaviour are Ctrl+Win+Up, and Ctrl+Win+Down.
br
Andrew
вторник, 5 февраля 2019 г., 22:57:21 UTC+2 пользователь YellowBook написал: