Page 1 of 1
Is there a way for batch processing??
Posted: 2005-08-10 06:20:46
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
Posted: 2005-08-10 07:44:54
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.