Insert utility

Comments on existing version & Suggestions for future versions. If you want a new feature suggest it here. Discussions about beta versions also come in this section.
Post Reply
pollopolea

Insert utility

Post by pollopolea »

first I must say that im spanish and my englist isn´t good at all.

I use you program an it very usefull , but some I see it needs a feature:

- Insert funtion: you select a movie and you can write the position in which you want to insert it, the rest of the movies renumber.

thanks!!
antp
Site Admin
Posts: 9675
Joined: 2002-05-30 10:13:07
Location: Brussels
Contact:

Post by antp »

Actually it is possible to renumber the movies using a script.
Select the movies that have to get their number incremented by 1, then go to Tools -> Scripting -> Editor -> New
and past the following script :

Code: Select all

// SCRIPTING
program AddOne;
begin
  SetField(0, IntToStr(StrToInt(GetField(0), 0) + 1));
end.
Click Run.
Then when you come back to the movie list you'll maybe have to refresh it (right click -> Refresh).
Post Reply