Page 1 of 1

Insert utility

Posted: 2004-01-31 13:16:34
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!!

Posted: 2004-01-31 14:04:58
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).