Can I move several movie numbers?

If you need help on how to use the program
Post Reply
luuuciano
Posts: 2
Joined: 2006-09-04 21:51:02

Can I move several movie numbers?

Post by luuuciano »

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)
antp
Site Admin
Posts: 9725
Joined: 2002-05-30 10:13:07
Location: Brussels
Contact:

Post by antp »

Select the movies that you want to have their number increased, then Tools -> Scripting, click "Editor" then the "new" icon, enter the following:

Code: Select all

program NewScript;
begin
  SetField(fieldNumber, IntToStr(StrToInt(GetField(fieldNumber), 0) + 1));
end.
Then click "Run".
You can replace +1 by the increase that you want.
luuuciano
Posts: 2
Joined: 2006-09-04 21:51:02

Post by luuuciano »

wow, what a nice little script...
thank you very much antoine!
Post Reply