[REQ]Insert phrase before movie title - possible via script?

If you made a script you can offer it to the others here, or ask help to improve it. You can also report here bugs & problems with existing scripts.
Post Reply
daws0n
Posts: 53
Joined: 2005-02-04 13:53:18

[REQ]Insert phrase before movie title - possible via script?

Post by daws0n »

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

Post by antp »

Hi,
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.
daws0n
Posts: 53
Joined: 2005-02-04 13:53:18

Post by daws0n »

Thanks very much antp, it works great and has saved me a lot of time!
Post Reply