Page 1 of 1

Edit more than 1 film

Posted: 2009-01-26 21:06:16
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

Posted: 2009-01-26 21:42:42
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. ;)

Posted: 2009-01-29 12:29:16
by tachenco
Cool! Thank you very much!