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
Make a new file
Moderators: Hacker, petermad, Stefan2, white
- Balderstrom
- Power Member
- Posts: 2148
- Joined: 2005-10-11, 10:10 UTC
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
In AHK lingo:
+ is Shift
! is Alt
^ is Ctrl, and
# is the WinKey
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
}
+ is Shift
! is Alt
^ is Ctrl, and
# is the WinKey