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!!
Insert utility
-
antp
- Site Admin
- Posts: 9903
- Joined: 2002-05-30 10:13:07
- Location: Brussels
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 :
Click Run.
Then when you come back to the movie list you'll maybe have to refresh it (right click -> Refresh).
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.
Then when you come back to the movie list you'll maybe have to refresh it (right click -> Refresh).