Hi,
What I need is somehow to copy in all records the field 'Languages' to the field 'Translated Title'
I imported my list from Extreme Movie Manager and thats were the import procedure put it.
Can anyone plz help me?
Need someone to help me write script
You mean that the import puts the translated title in the wrong field? I should correct it then
Well, here is a script that will do this move:
Well, here is a script that will do this move:
Code: Select all
program NewScript;
begin
SetField(fieldTranslatedTitle, GetField(fieldLanguages));
SetField(fieldLanguages, '');
end.