Closing "Edit Comment" dialog with Enter key???

English support forum

Moderators: white, Hacker, petermad, Stefan2

Post Reply
silent
Junior Member
Junior Member
Posts: 13
Joined: 2005-01-09, 13:15 UTC

Closing "Edit Comment" dialog with Enter key???

Post by *silent »

it is possible to configure in TC, that closing "Edit Comment" dialog may be done with Enter key?

(if comments are saved in descript.ino file - btw recommended by help - edit dialog would be closed easier with Enter, because that file is in single-line format.)
User avatar
Sir_SiLvA
Power Member
Power Member
Posts: 3311
Joined: 2003-05-06, 11:46 UTC

Post by *Sir_SiLvA »

nope its note possible atm...
Hoecker sie sind raus!
User avatar
Flint
Power Member
Power Member
Posts: 3487
Joined: 2003-10-27, 09:25 UTC
Location: Antalya, Turkey
Contact:

Post by *Flint »

silent
Maybe, with help of other tools. For example, Windows PowerPro can do that (look for pressing Enter in Edit Comment window and "replace" it with F2).
Flint's Homepage: Full TC Russification Package, VirtualDisk, NTFS Links, NoClose Replacer, and other stuff!
 
Using TC 10.52 / Win10 x64
User avatar
SanskritFritz
Power Member
Power Member
Posts: 3693
Joined: 2003-07-24, 09:25 UTC
Location: Budapest, Hungary

Post by *SanskritFritz »

Tab and then Enter is also an option.

And here is an Autohotkey script for that:

Code: Select all

$Return::
	WinGet sf_sProcessName, ProcessName, A
	WinGetActiveTitle sf_sWindowTitle
	If (sf_sProcessName = "TOTALCMD.EXE" and sf_sWindowTitle = "File comment")
		Send {F2}
	else
		Send {ENTER}
I switched to Linux, bye and thanks for all the fish!
User avatar
Lesmo16
Senior Member
Senior Member
Posts: 380
Joined: 2005-02-07, 07:18 UTC
Location: Germany

Post by *Lesmo16 »

2SanskritFritz: I didn't promise too much about AutoHotkey, right? :wink:

Everything dealing with keystrokes and/or mouseclicks is possible with AutoHotkey. It's one of the best tools I know! :D
Everyone believing in telekinesis, raise my hand!
User avatar
Hacker
Moderator
Moderator
Posts: 13102
Joined: 2003-02-06, 14:56 UTC
Location: Bratislava, Slovakia

Post by *Hacker »

silent,
It's possible with Ctrl-Enter, if it helps.

HTH
Roman
Mal angenommen, du drückst Strg+F, wählst die FTP-Verbindung (mit gespeichertem Passwort), klickst aber nicht auf Verbinden, sondern fällst tot um.
User avatar
SanskritFritz
Power Member
Power Member
Posts: 3693
Joined: 2003-07-24, 09:25 UTC
Location: Budapest, Hungary

Post by *SanskritFritz »

2Lesmo16
Absolutely, thanks again for pointing it out! I am digging into it, it has a similarly live forum as well.
I switched to Linux, bye and thanks for all the fish!
silent
Junior Member
Junior Member
Posts: 13
Joined: 2005-01-09, 13:15 UTC

Post by *silent »

ctrl-enter ia a nice solution. thanks, hacker.

Flint, I'm user of powerpro from years, but first I try find native's software solution, because my ppro config is so large there are moments when I lose control what I programm in it. ;-)

thanks for all.
Post Reply