There is a nice addon for Firefox called "Tab wheel scroll" which does the following: when you mouseover tab-bar and scroll your mouse's wheel - it lists tabs.
Kind people from the russian forum helped me with that by writing a nice script for AutoHotkey, that does what I've asked. But it needs to be run everytime I run Total Commander. In fact I can write a *.bat-script that will run both of them and use this *.bat script just as a shortcut, but I would like to have the functionality of that script be integrated it in the Total Commander.
As there is no souce code available - maybe you could compile special version for me?

Or regard it just as a feature request.
p.s.: script code:
Code: Select all
; AutoHotkey script
; www.autohotkey.com
#SingleInstance force
#IfWinActive ahk_class TTOTAL_CMD
WheelUp::
WheelDown::
MouseGetPos,,,, ControlClass
Send, % "^" (A_ThisHotkey = "WheelUp" ? "+" : "") "{TAB}"
Else, Send, % "{" A_ThisHotkey "}"
Return