- Aug
- 2,320
- 111
To open the TCC Help file at the keyword index;
Joe
Code:
*help hmkwindex
Joe
By registering with us, you'll be able to discuss, share and private message with other members of our community.
SignUp Now!*help hmkwindex
#Requires AutoHotkey v2
;@Ahk2Exe-ConsoleApp
F1::
{
If WinActive("ahk_exe tcc.exe")
{
Send "@*help hmkwindex"
Send "{Enter}"
}
}