Can I select some movies and increase their numbers?
It is because I want to add some CDs that I found, and have numbers between some other cds...
(I am using my own coding of course, but it would be nice to sort it by number too)
Can I move several movie numbers?
Select the movies that you want to have their number increased, then Tools -> Scripting, click "Editor" then the "new" icon, enter the following:
Then click "Run".
You can replace +1 by the increase that you want.
Code: Select all
program NewScript;
begin
SetField(fieldNumber, IntToStr(StrToInt(GetField(fieldNumber), 0) + 1));
end.
You can replace +1 by the increase that you want.