Search found 6 matches

by azuvk
2009-12-20 21:11:38
Forum: Ant Movie Catalog > Scripts
Topic: version Filmaffinity Legrad's (ES) V 1.0
Replies: 5
Views: 2394

No consigo que funcione, con crear un fichero .ifs y pegar el código tendría que valer ¿no? no me encuentra ningun título... :(

de todas formas a ver si me puedes echar una mano. Yo modifico el script original cuando falla algo, pero no entiendo lo suficiente como para crear uno de nuevo, y me ...
by azuvk
2009-12-19 02:56:15
Forum: Ant Movie Catalog > Scripts
Topic: version Filmaffinity Legrad's (ES) V 1.0
Replies: 5
Views: 2394

Gracias por colaborar, ¿qué cambios has hecho?
by azuvk
2009-08-07 15:45:21
Forum: Ant Movie Catalog > Scripts
Topic: Creating a Script
Replies: 6
Views: 2665

As I wrote on another topic, I plan some kind of scripting tutorial and a wiki for later this year. It will explain how to write a basic script from the scratch using an example website and should be useful for Ant Movie Catalog and Sisimizi Game Catalog scripts. Unfortunately I cannot say when I ...
by azuvk
2009-08-07 14:07:17
Forum: Ant Movie Catalog > Scripts
Topic: [EN+others] NEW SCRIPTS REQUESTS : CLICK HERE TO DO THEM
Replies: 199
Views: 213126

Somebody can make a script for www.bookaffinity.com or/and www.meristation.com? I wish to do it by myself, but I don't know how to write a script from the beginning :(

Thanks :)
by azuvk
2009-07-22 18:49:13
Forum: Ant Movie Catalog > Scripts
Topic: Problema con Filmaffinity (ES) 2.39
Replies: 27
Views: 10925

Otra cosa : ¿hay alguna forma de importar la votación propia?

Something like
// Votes
LineNr := FindLine('VALUE="/flash/rats.swf?', Page, 0);
if LineNr <> -1 then
begin
Line := Page.GetString(LineNr);
Line := TextBetween(Line, 'VALUE="/flash/rats.swf?', '>');
Line := StringReplace(Line ...
by azuvk
2009-07-20 10:41:51
Forum: Ant Movie Catalog > Scripts
Topic: Problema con Filmaffinity (ES) 2.39
Replies: 27
Views: 10925

Para solucionarlo y seguir importando las críticas y no solo el argumento, yo he hecho lo siguiente, y me funciona bien:


while LineAux<>' </tr>' do
begin
Line := Line+LineAux;
iL := iL+1;
LineAux := Page.GetString(LineNr + iL+1);
end;


solo hay que sustituir


'</tr>' por ' </tr ...