Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Done Directory History Window

Aug
2,320
111
Pressing F6,
the Directory History Window is opened.

Pressing F1 when the Directory History Window is open,
takes me to the Take Command Help main page.

Instead,
could F1 take me to the Take Command Help page for the Directory History Window,
that is,
TCC -> Command Line -> Directory History Window

Joe
 
Here's an AutoHotKey script,
so that pressing F1 when the Directory History Window is open,
will take me to the Take Command Help page for the Directory History Window.

Code:
#Persistent
SetTitleMatchMode, 2 ; Ensures partial matching of window titles

; Hotkey definition
#IfWinActive, Directories
F1::
    Run, "C:\Program Files\JPSoft\TCMD34\eViewer.exe" "C:\Program Files\JPSoft\TCMD34\TakeCommand.ewriter" "dirhist.html"
    return
#IfWinActive

Joe
 
Yes, it does, as I demonstrated in my AutoHotKey script.

F6 = Directories
F7 = Filenames
PgUp = History

Joe
 
Back
Top