allow to edit fields when you select multiple movies

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
raguchi
Posts: 5
Joined: 2008-01-09 12:17:29

allow to edit fields when you select multiple movies

Post by raguchi »

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!
antp
Site Admin
Posts: 9651
Joined: 2002-05-30 10:13:07
Location: Brussels
Contact:

Post by antp »

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:

Code: Select all

program NewScript;
begin
  SetField(fieldSubtitles, 'Spanish');
end.
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" ;)
Post Reply