Page 1 of 1

Adding year to search field

Posted: 2014-07-03 09:38:54
by Teebee
Hi,

i want to update all my movies in the catalog. All data is from imdb, but now, i want it to come from moviemeter.nl

But when i run the script, when there is more then one result, i never know which movie i should pick.

So, how can i add the year that is stored in the database, to show in the search field.

eg. "Search Results for Fair Game: " should become this: "Searchresults for Fair Game (2010) :

that way i know which year the movie was released making it easier to convert from imdb -> moviemeter.

Posted: 2014-07-03 11:29:21
by antp
Hi,
You can try changing the line
PickTreeAdd('Zoekresultaten voor ' + MovieName + ' :', '');
to
PickTreeAdd('Zoekresultaten voor ' + MovieName + ' (' + GetField(fieldYear) + ') :', '');

Posted: 2014-07-04 11:41:52
by Teebee
Yeah, thats the one.

I think i used to have that one, but when the script updated (its not default) it was lost and never to be found again :lol:


Thank you :grinking: