what is the short cut key to edit item names

Discuss and share scripts and script files...
Post Reply
kotlmg
Posts: 321
Joined: 30 Jun 2010 17:14

what is the short cut key to edit item names

Post 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?

Stefan
Posts: 1360
Joined: 18 Nov 2008 21:47
Location: Europe

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

Post 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

.

kotlmg
Posts: 321
Joined: 30 Jun 2010 17:14

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

Post by kotlmg »

thanks . #147 is working for me. how can i call this in the script?

Stefan
Posts: 1360
Joined: 18 Nov 2008 21:47
Location: Europe

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

Post 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;

kotlmg
Posts: 321
Joined: 30 Jun 2010 17:14

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

Post by kotlmg »

thanks, script is working.

kotlmg
Posts: 321
Joined: 30 Jun 2010 17:14

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

Post by kotlmg »

is it possible to add up and down arrows to move the items in edit box?

Post Reply