Directly go to Find text in Search function
Moderators: Hacker, petermad, Stefan2, white
Directly go to Find text in Search function
Hi Christian, this is Pierre from Belgium.
I use the "Find text" in the Search function hundred times a day but the cursor is always in the "Search for" field, which is for me not interesting.
So I press CTRL+ALT+F7 and then ALT+X but sometimes, if I missed the CTRL+AL+F7, ALT+X closes TC, which is really annoying.
Is it possible to add a switch in wincmd.ini (or another way) which should directly put the cursor in the "Find text" field ? Or create an internal command named "Find text" ?
Can somebody tell me if it's possible to do this with Autohotkey ? I know it can do stuff like that but I've never used it.
Thanks in advance.
I use the "Find text" in the Search function hundred times a day but the cursor is always in the "Search for" field, which is for me not interesting.
So I press CTRL+ALT+F7 and then ALT+X but sometimes, if I missed the CTRL+AL+F7, ALT+X closes TC, which is really annoying.
Is it possible to add a switch in wincmd.ini (or another way) which should directly put the cursor in the "Find text" field ? Or create an internal command named "Find text" ?
Can somebody tell me if it's possible to do this with Autohotkey ? I know it can do stuff like that but I've never used it.
Thanks in advance.

Just a solution if you use an external language (wcmd_fra.lng or wcmd_eng.lng...)
Edit your used language file, in the entry "5607=Te&xt(e)" and move the "&" who is before the "x" before the "T".
Save the changed file.
Exit TC and reload TC.
The new shortcut for "Find text" ist "Alt+T".
If you use the wcmd_dut.lng the shortcut is already "ALT+T"
Friendly
Paul
Ouistiti, #11943
L'important n'est pas de convaincre, mais de donner à réfléchir.
The important thing is not to convince, but to incite to think.
1,77245385090552... •
L'important n'est pas de convaincre, mais de donner à réfléchir.
The important thing is not to convince, but to incite to think.
1,77245385090552... •
- ArchCarrier
- Junior Member
- Posts: 33
- Joined: 2005-06-06, 12:53 UTC
- Location: Brussels, Belgium
AutoHotkey:
Change the 't' in 'Send !t' to whatever letter is used to activate the text field.
(BTW: three Belgians in one thread!)
Code: Select all
#IfWinActive ahk_class TTOTAL_CMD
^!F7::
Send ^!{F7}
Send !t
return
(BTW: three Belgians in one thread!)
2pgriffet
Just for other readers: CTRL+ALT+F7 is not the default shortcut to open the Find dialog - it is ALT+F7So I press CTRL+ALT+F7
License #524 (1994)
Danish Total Commander Translator
TC 11.51 32+64bit on Win XP 32bit & Win 7, 8.1 & 10 (22H2) 64bit, 'Everything' 1.5.0.1391a
TC 3.60b4 on Android 6, 13, 14
TC Extended Menus | TC Languagebar | TC Dark Help | PHSM-Calendar
Danish Total Commander Translator
TC 11.51 32+64bit on Win XP 32bit & Win 7, 8.1 & 10 (22H2) 64bit, 'Everything' 1.5.0.1391a
TC 3.60b4 on Android 6, 13, 14
TC Extended Menus | TC Languagebar | TC Dark Help | PHSM-Calendar
- ArchCarrier
- Junior Member
- Posts: 33
- Joined: 2005-06-06, 12:53 UTC
- Location: Brussels, Belgium
Thanks to all.
Sorry for the mistake, it was of course ALT+F7.
Meanwhile, I installed Autohotkey and I created a script which does what I want but I do not have another use of this program which costs me 4 MB of RAM just for a shortcut, even with an executable script.
And as I have an old PC, I will continue to use the old way.
Still looking for an option within TC to activate "Find text".
Sorry for the mistake, it was of course ALT+F7.
Meanwhile, I installed Autohotkey and I created a script which does what I want but I do not have another use of this program which costs me 4 MB of RAM just for a shortcut, even with an executable script.
And as I have an old PC, I will continue to use the old way.
Still looking for an option within TC to activate "Find text".