Shortcut to a Multi-Rename Tool
Moderators: Hacker, petermad, Stefan2, white
Shortcut to a Multi-Rename Tool
Is it possible to invoke the Multi-rename tool with a specific saved settings?
For instance, let's say I have a set of saved settings called "Rename 1". Can I somehow invoke the MRT to just execute with that set of saved settings?
Thanks!
For instance, let's say I have a set of saved settings called "Rename 1". Can I somehow invoke the MRT to just execute with that set of saved settings?
Thanks!
But actually, how would that work as a menu command?
I tried
MENUITEM "MRT - Rename 1", cm_MultiRenameFiles, Rename 1
But TC threw a shoe when starting. I tried several variations with the same result.
(For those of you who like things literally, the error was "Unknown identifier in line 127 of menu file: cm_MultiRenameFiles, Rename 1)
And I don't suppose these things are documented anywhere?
Thanks
I tried
MENUITEM "MRT - Rename 1", cm_MultiRenameFiles, Rename 1
But TC threw a shoe when starting. I tried several variations with the same result.
(For those of you who like things literally, the error was "Unknown identifier in line 127 of menu file: cm_MultiRenameFiles, Rename 1)
And I don't suppose these things are documented anywhere?
Thanks
You should know that CM_ commands don't support parameters. So you can use following steps:
1. Open cm_CommandBrowser (it may be opened from different places like edit buttonbar or assign hotkey dialogs; however it is useful so you can add it to your menu or buttonbar).
2. Add your command to usercmd.ini section e.g. with name em_Rename1:
2. Add a line to your menu file:
1. Open cm_CommandBrowser (it may be opened from different places like edit buttonbar or assign hotkey dialogs; however it is useful so you can add it to your menu or buttonbar).
2. Add your command to usercmd.ini section e.g. with name em_Rename1:
Code: Select all
MULTIRENAME Rename 1
Code: Select all
MENUITEM "MRT - Rename 1", em_Rename1