I have originaly stored movies in categories which was default. (action,comedy,...) Now I change categories by myself (Akcni,komedie,...) into Czech lang. I would like to know if there is any tool how to convert between them because i have over 350 movies and i do not like to change them manualy.
THX
I need help with changing categories
You can do that by script :
select all movies, then Tools -> Scripting, Editor, New:
select all movies, then Tools -> Scripting, Editor, New:
Code: Select all
program NewScript;
var
s: string:
begin
s := GetField(fieldCategory);
if s = 'Comedy' then
SetField(fieldCategory, 'Komedie')
else
if s = 'Action' then
SetField(fieldCategory, 'Akcni')
else
if .....etc...
end.