Personal Video Database

English => Support => Topic started by: Ivek23 on March 19, 2010, 01:05:14 pm

Title: mymovies.it rating:custom items
Post by: Ivek23 on March 19, 2010, 01:05:14 pm
I wonder if possible that is even mymovies.it rating to edit the script that will be visible in custom items and what to enter where.

Thanks
Title: Re: mymovies.it rating:custom items
Post by: Ivek23 on March 19, 2010, 08:07:07 pm
For those who would like to have Mymovies rating in custom fields (custom section)
here is a solution

instead, the original

 //Rating

 curPos := Pos('http://www.mymovies.it/v7/img/mymonetro_incassi_sopra.png', HTML);
 curPos := PosFrom('margin:0px 11px 7px 11px">', HTML, curPos);
 if curPos > 0 then begin
  curPos := curPos + 26;
  EndPos := PosFrom('<', HTML, curPos);
  AddFieldValue(mfRating, FloatToStr(StrToFloat(Copy(HTML, curPos, EndPos - curPos)) * 2));  
  LogMessage('Rating:' + FloatToStr(StrToFloat(Copy(HTML, curPos, EndPos - curPos)) * 2));
 end else
  curPos := EndPos;
end;


paste this

 //Rating

 curPos := Pos('http://www.mymovies.it/v7/img/mymonetro_incassi_sopra.png', HTML);
 AddCustomFieldValueByName('MyMovies Rating', '0');
 curPos := PosFrom('margin:0px 11px 7px 11px">', HTML, curPos);
 if curPos > 0 then begin
  curPos := curPos + 26;
  EndPos := PosFrom('<', HTML, curPos);
 AddCustomFieldValueByName('MyMovies Rating', FloatToStr(StrToFloat(Copy(HTML, curPos, EndPos - curPos)) * 2));  
  LogMessage('Rating:' + FloatToStr(StrToFloat(Copy(HTML, curPos, EndPos - curPos)) * 2));
 end else
  curPos := EndPos;
end;

and this should work

at my work
as seen on picture



[attachment deleted by admin]
Title: Re: mymovies.it rating:custom items
Post by: Ivek23 on March 19, 2010, 08:19:25 pm
Let the Internet address does not interfere because it is in the script
and must be otherwise you script will not work.

Cheers
Title: Re: mymovies.it rating:custom items
Post by: Zacca on March 20, 2010, 12:30:08 pm
Thanks for the info....i'll test it  :)
Title: Re: mymovies.it rating:custom items
Post by: Ivek23 on March 23, 2010, 07:01:04 pm
Thanks for the info....i'll test it  :)

How they work script
Title: Re: mymovies.it rating:custom items
Post by: Zacca on March 26, 2010, 06:27:41 pm
opps sorry
I'v test it and it work fine  ;D
Thanks for the mod