Page 1 of 1

setting values standard values

Posted: 2002-12-24 00:30:19
by jan_hut
Would it be possible to set for example the standard value for subtitles to "none" when importing a movie? Or at least export it to html like that if there is no subtitle info available? I think I should be able to use some php code for this but I haven't been able to find a way to code that in a single line (not a line for each language).

Posted: 2002-12-24 09:38:46
by antp
In the Preferences window there is a button to set default field values. These values are set on a newly created movie.
If you prefer to set a value when getting information from a script, edit the script and add just before the line "DisplayResults;" a line with:

Code: Select all

SetField(fieldSubtitles, 'none');
for example.

Posted: 2002-12-24 18:28:03
by jan_hut
thanks ant!