Edit more than 1 film

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
tachenco
Posts: 6
Joined: 2008-07-29 17:38:42

Edit more than 1 film

Post by tachenco »

Recently i have saved all my movies to HDD, so i can fill the "source" field, but i have realized that i have to do that one by one.

The possibility of edit some specific fields selecting more than 1 movie at the same time would be great

I think is a good idea
bad4u
Posts: 1148
Joined: 2006-12-11 22:54:46

Post by bad4u »

You can easily do that by using a script. Simply choose the movies you want to modify and on the scripting window click on "selected movies" before you run the script.

To change source field you could use something like

Code: Select all

program ModifySourceField;
var
  value: string;
begin
  if value = '' then
    input('Input new string for field "Source":', '', value);
  setField(fieldSource, value);
end.
The script will ask for a string and copy it to field "Source" of all selected movies. I recommend making a backup of your catalog before you run any scripts that modify a larger number of movies at once. If you change "fieldSource" the script works for other fields too. ;)
tachenco
Posts: 6
Joined: 2008-07-29 17:38:42

Post by tachenco »

Cool! Thank you very much!
Post Reply