Need someone to help me write script

If you need help on how to use the program
Post Reply
poopa
Posts: 5
Joined: 2002-06-03 14:16:02

Need someone to help me write script

Post by poopa »

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

Post by antp »

You mean that the import puts the translated title in the wrong field? I should correct it then :D

Well, here is a script that will do this move:

Code: Select all

program NewScript;
begin
  SetField(fieldTranslatedTitle, GetField(fieldLanguages));
  SetField(fieldLanguages, '');
end.
poopa
Posts: 5
Joined: 2002-06-03 14:16:02

Post by poopa »

10x!

im not sure ur app doesnt put it in the correct place
its possible it wasnt in the correct place in XMM
since there is no such field
i had to improvise
Post Reply