Page 1 of 1

what is the short cut key to edit item names

Posted: 07 Nov 2011 06:57
by kotlmg
what is the shortcut key to edit item names of rename special? i want a small script to edit item names of selected files. in those box file extensions should not come. right now edit names shows the file extensions. is it possible to not to show file extension?

Re: what is the short cut key to edit item names

Posted: 07 Nov 2011 09:38
by Stefan
kotlmg wrote:what is the shortcut key to edit item names of rename special?
See XYplorer menu "Help > Make List of Commands..."

To open this list of build-in commands with Notepad, to use the IDs in an script, use this script in address bar:

Code: Select all

::#705;    $tmpfile="%temp%\XYComandIDs.txt";    writefile($tmpfile, "<clipboard>");    run notepad $tmpfile;
Read more of this stuff in the help or at > http://www.xyplorer.com/xyfc/viewtopic. ... 410#p61410



kotlmg wrote:i want a small script to edit item names of selected files.
in those box file extensions should not come.
right now edit names shows the file extensions.
is it possible to not to show file extension?
You mean:
File / Rename Special / Edit Item Names... #147

No, there is no such option AFAIK

.

Re: what is the short cut key to edit item names

Posted: 07 Nov 2011 11:00
by kotlmg
thanks . #147 is working for me. how can i call this in the script?

Re: what is the short cut key to edit item names

Posted: 07 Nov 2011 11:05
by Stefan
kotlmg wrote:thanks . #147 is working for me. how can i call this in the script?
Just as usual command with an trailing semicolon: #147;


Try in XYplorer address bar:
::#147;

Re: what is the short cut key to edit item names

Posted: 07 Nov 2011 12:36
by kotlmg
thanks, script is working.

Re: what is the short cut key to edit item names

Posted: 07 Nov 2011 15:08
by kotlmg
is it possible to add up and down arrows to move the items in edit box?