Is there a way for batch processing??

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
dante
Posts: 12
Joined: 2005-08-09 07:18:18

Is there a way for batch processing??

Post by dante »

Isn't there a way to change a field in many entries at once?? For example, I use the source field, to write in which case I keep each movie. But if I decided to change the name of the case, it would be nice to be able to mark many movies, and change the same field for all of them. Like in many mp3-tagging programms
antp
Site Admin
Posts: 9630
Joined: 2002-05-30 10:13:07
Location: Brussels
Contact:

Post by antp »

This can be done using scripting (Tools -> Scripting).
You can use the script called "update all fields", or write one yourself.
If you simply want to set a new value for source field of selected movies, you can use this:

Code: Select all

program NewScript;
begin
  SetField(fieldSource, 'new value');
end.
the list of the field names is available in the help file.
Post Reply