I try to replace the "original title" by the "translated title" field then delete the "translated title":
------------------------------------------------------------------------
program NewScript;
begin
SetField(fieldOriginalTitle, GetField(fieldTranslatedTitle));
SetField(fieldTranslatedTitle, '');
end.
-------------------------------------------------------------------------
the original field is filled correctly, but the translated title won't be deleted, even if the pop-up window during script execution shows the correct expected result. So I end up with two identical fields.
Is there something wrong with my last line. Any idea ?

Thanks !