Page 1 of 1

Make a new file

Posted: 2009-01-28, 06:49 UTC
by omdawe
I would like to have in "Keyboard Remapping" a command to make a new file.

A dialog box that comes up asking what i want to name the file and file extension, or even a small dropdown of preselected file extensions. (the second one is not really needed..

Tanx

Posted: 2009-01-28, 09:04 UTC
by karlchen
omdawe wrote:I would like to have in "Keyboard Remapping" a command to make a new file.
<Shift><F4> ?!

Karl

Posted: 2009-08-05, 05:45 UTC
by omdawe
TANX!!!... But i still would still like it more if i had it in Keyboard remapping so i could choice my own button sequence for the dialog that comes up with SHIFT+F4

Posted: 2009-12-10, 13:33 UTC
by omdawe
I guess this have been spoken about before, but when i crate a file i would like to have previous created file names in this list. because i create a lot of the files with the same file name.. Would make my work faster.

Posted: 2009-12-10, 23:15 UTC
by Balderstrom
I don't recall, but I believe there are still a handful of hardcoded keyboard shortcuts that never got an actual usable cm_command. Which as you see can be an annoyance. The only option I know of atm would be to use something like AutoHotKey (AHK), AutoIT or PowerPro (PPro).

With AHK installed, you could launch this script:
TC_Keys.ahk

Code: Select all

#ifWinActive, ahk_class TTOTAL_CMD
{
	; Shift+z
	;	:: Call TC's Edit/Create new file.
	;	:: create a new file called: MyFileName.ext
	+z::
	{
		Send, +{F4}
		Send, MyFileName.ext{Enter}
	return
	}
return
}
In AHK lingo:
+ is Shift
! is Alt
^ is Ctrl, and
# is the WinKey

Posted: 2009-12-11, 02:27 UTC
by omdawe
Tanx for the work around, but i would prefer to wait until this is in TC. I use TC a portable and i like to run TC totally on its own. Don“t want to install another program just for such a small thing.