with the newer version of AMC (4.1.2) there is the option to have custom fields.
What i would like to do is to pass the imdb score for a movie to such a custom field.
Up to now i was storing the imdb score with the votes to the field media label.In order to do that i was modifying the imdb script like this:
1. In the imdb script I was finding this :
Code: Select all
if (GetOption('UserRatings') = 1) and (Value <> '') and (CanSetField(fieldMediaType)) then
SetField(fieldMediaType, Value);
Code: Select all
if (GetOption('UserRatings') = 1) and (Value <> '') and (CanSetField(fieldMedia)) then
SetField(fieldMedia, Value);
Is there an idea how to do it now in order to store the imdb score with votes in a custom field which i create for this purpose?
Thank you for your time reading this.
Regards,
the_observer.