Page 1 of 1

Filmaffinity Espanol not working

Posted: 2015-08-28 15:28:44
by leteck
Did somebody has a filmaffinity script working?

Posted: 2015-08-29 14:28:08
by antp
The current version seems to work (2.85)
If you have an older one try updating it by runnning the "Update scripts" script (first in the list).

Posted: 2015-09-04 17:48:56
by carlosmg2
it works except the movie rating

Posted: 2015-09-06 09:58:09
by JuanRa_007
Una solución rápida para que funcione:

Cambiar el código:

Code: Select all

// Rating
LineNr := FindLine('<div id="movie-rat-avg" itemprop="ratingValue">', Page, LineNr);
por

Code: Select all

// Rating
LineNr := FindLine('<div id="movie-rat-avg" itemprop="ratingValue"', Page, LineNr);
Es decir, solo quitar el símbolo ">" al final de la cadena de búsqueda, porque le han incluido un "contend" al bloque "div" que lo contiene el campo de "rating".

Saludos.

Posted: 2015-09-06 19:54:45
by antp
Thanks