For those that use AutoHotkey, the following v1 code should do the trick as an intermediate solution, this can be added to your "main" ahk script of course. Ctrl-Tab and Ctrl-Shift-Tab as hotkeys would by my suggestion, but here ctrl-f6 and ctrl-shift-f6:
Code:
GroupAdd, listerWindows, ahk_class TLister ahk_exe TOTALCMD.EXEGroupAdd, listerWindows, ahk_class TLister ahk_exe TOTALCMD64.EXE#IfWinActive, ahk_group listerWindows^F6:: ; Next lister windowWinGetClass, ActiveClass, AWinSet, Bottom,, AWinActivate, ahk_class %ActiveClass%return+^F6:: ; Previous lister windowWinGetClass, ActiveClass, AWinActivateBottom, ahk_class %ActiveClass%return#IfWinActive
Statistics: Posted by hi5 — 2024-11-30, 09:10 UTC