Three Lines Update
Posted: 2007-08-28 06:19:48
Hello,
Lacc made a modification for the old IMDB script for me a while ago.
I need someone please to update these 3 lines for me for the new script
Those where the lines to get the number of votes, and if the movie was in the top 250.
I tried to update them, but it was like a blind man trying to play darts .
Thanks a lot in advance.
Lacc made a modification for the old IMDB script for me a while ago.
I need someone please to update these 3 lines for me for the new script
Those where the lines to get the number of votes, and if the movie was in the top 250.
I tried to update them, but it was like a blind man trying to play darts .
Code: Select all
//
Value2 := TextBetween(PageText, '/rating-stars/', '/rating-vote/');
Value2 := TextBetween(Value2, '</b> (', ')');
Value3 := TextBetween(PageText, '/rating-stars/', '<table cellpadding');
if TextBetween(Value3, '/top_250_films">', '</a>') <> '' then
Value3 := ' ' + TextBetween(Value3, '/top_250_films">', '</a>')
else
Value3 := '';
//