create button: Quick-View plus pressing Tab-End-Tab ?

English support forum

Moderators: white, Hacker, petermad, Stefan2

Post Reply
lezerogan2
Junior Member
Junior Member
Posts: 83
Joined: 2010-04-19, 15:50 UTC

create button: Quick-View plus pressing Tab-End-Tab ?

Post by *lezerogan2 »

I use TC quick-view <ctrl-Q>, to view (in the opposite panel) the end of text files.
By default it shows the beginning of files, so I manually press <tab> <end> <tab>.
Is there a way to create a button bar that will emulate those three keys?
User avatar
Gral
Power Member
Power Member
Posts: 1460
Joined: 2005-01-26, 15:12 UTC

Post by *Gral »

AutoHotKey script assigned to button or TC hotkey. eg.:

Code: Select all

Send {Tab}{End}{Tab}
Even better you can include Down and Up (arrows) key, eg.:

Code: Select all

Send {Down}{Tab}{End}{Tab}
and

Code: Select all

Send {Up}{Tab}{End}{Tab}
assign buttons or TC hotkeys and browse through filelist with single clicks/key press.
lezerogan2
Junior Member
Junior Member
Posts: 83
Joined: 2010-04-19, 15:50 UTC

Post by *lezerogan2 »

To Gral,
It is working fine.
Thanks a lot.
Post Reply