Hi,
I am wanting to add a prefix phrase to large quantity of my AMC database, rather than by hand is this possible via a script? I simple need to take the original title and insert the phrase before it.
Any help would be much appreciated!
Thanks
[REQ]Insert phrase before movie title - possible via script?
Hi,
Sure, it would be something like this:
Sure, it would be something like this:
Code: Select all
program NewScript;
var
s: string;
begin
s := GetField(fieldOriginalTitle);
SetField(fieldOriginalTitle, 'Text to insert ' + s);
end.