IMDB - cannot import number of votes
Posted: 2019-01-12 23:08:46
using script 4.013
I cannot download number of votes (see images below)


I cannot download number of votes (see images below)


Code: Select all
Value := TextBetween(PageText, 'total-votes">(', ')<');
Code: Select all
if GetOption('UserRatings') > 0 then
begin
Value := TextBetween(PageText, 'total-votes">(', ')<');
// Value := TextBetween(PageText, '<a href="ratings" class="tn15more">', '</a>');
if Value <> '' then
Value := 'User Rating: ' + GetField(fieldRating) + ' out of 10 (with ' + Value + ')';
if (GetOption('UserRatings') = 1) and (Value <> '') and (CanSetField(fieldMediaType)) then
SetField(fieldMediaType, Value);
if (GetOption('UserRatings') = 2) and (Value <> '') then
SetField(fieldComments, GetField(fieldComments) + #13#10 + #13#10 + Value);
end;