When you select multiple movies from the list, the fields become non-editable.
¿Could it be posible to turn them into editable by clicking them for example?
an example, when you insert several movies that all have spanish subtitles it's tedious having to fill this field one by one.
later!
allow to edit fields when you select multiple movies
It will probably be added some day, but currently this can be done using scripting (Tools menu).
There are one or two scripts made for that, e.g. "update fields".
Else doing such script can be simple, e.g. go in Editor page of the scripting window, click "New", and enter:
then click "Run".
the list of field names is found in the help file.
ps: be sure that "movies to include" option is set on "selected" and not on "all"
There are one or two scripts made for that, e.g. "update fields".
Else doing such script can be simple, e.g. go in Editor page of the scripting window, click "New", and enter:
Code: Select all
program NewScript;
begin
SetField(fieldSubtitles, 'Spanish');
end.
the list of field names is found in the help file.
ps: be sure that "movies to include" option is set on "selected" and not on "all"
