There is the command cm_50percent which is great in restoring the 50/50 panel view.
However, a command for the other direction is missing. Under certain circumstances I would like to expand the active panel to 100%. For example if i have a directory with large filename all starting with the same words like "artist - album - title.mp3" I want to see it all without scrolling. Or if I'am in thumbnail view and wand to see more of the pictures.
A cm_toggle100Percent command would be fine to quick access a 100% the view with a keyboard shortcut and than jump back to the original one.
Keep in mind, that left columns ext, size, date and attrib should be aligned to the left in order to expand the lenght of the name column.
little feature request: cm_100percent
Moderators: Hacker, petermad, Stefan2, white
-
- Junior Member
- Posts: 5
- Joined: 2005-07-20, 08:50 UTC
You can achieve this with a Autohotkey script.
This script is configured for my TC in screen resolution 1024X768 and window covers almost the complete screen. For your purposes you'll have to download and install autohotkey, then start the "AU3_Spy.exe" from autohotkey folder and hover with your mouse over the divider to get the appropriate mouse position.
Then alter the script, run it (with doubleclick) and each time you use [alt]+1 you will get your cm_100%.
sheepdog
Code: Select all
~!1::
;defines the hotkey alt 1
IfWinActive ahk_class TTOTAL_CMD
;checks if TC-Window is active
mousegetpos, merkx, merky,
;reads the actual mouseposition into these variables
Sleep, 100
; wait a moment - it's neede to work propoerly
MouseClick, left, 502, 536, 1, 0, D ,
; move the mousecursor to the divider and leftclick and hold the button
Sleep, 100
; wait
MouseClick, left, 1006, 536, 1, 2, U,
; move the mouse to the end of the window and release the button.
Sleep, 100
;wait
Mousemove, %merkx% , %merky%,
; set the mouse cursor to the position it hjad before
return
Then alter the script, run it (with doubleclick) and each time you use [alt]+1 you will get your cm_100%.
sheepdog
"A common mistake that people make when trying to design something
completely foolproof is to underestimate the ingenuity of complete fools."
Douglas Adams
completely foolproof is to underestimate the ingenuity of complete fools."
Douglas Adams