Buenas.... Primero que nada... Este soft es lo mas que vi...
Ahora, a ver si alguien me puede... ayudar..
Con el scripts de http://www.filmaffinity.com/ que me funciona perfecto... Tengo un solo problema... y debe ser una boludes pero no puedo sacar como hacerlo...
En el reparto = Actors me lo devuelve al catalogo separado... uno debajo del otro y me gustaria que me lo de como el de IMDB separados por coma... como puedo hacer?
Gracias amigos...
Ayuda filmaffinity
I don't know spanish, but if I got it right.. you want actors list on filmaffinity script separated by comma instead of linebreaks, do you ?darkemi20 wrote:Con el scripts de http://www.filmaffinity.com/ que me funciona perfecto... Tengo un solo problema... y debe ser una boludes pero no puedo sacar como hacerlo...
En el reparto = Actors me lo devuelve al catalogo separado... uno debajo del otro y me gustaria que me lo de como el de IMDB separados por coma... como puedo hacer?
If so, simply search these lines on the script
Code: Select all
Actors := TextBetween (Line, '">', '</a>') + #13#10;
while Pos ('stype=cast', Line) > 0 do
Actors := Actors + TextBetween (Line, '"> ', '</a>') + #13#10;
Code: Select all
Actors := TextBetween (Line, '">', '</a>');
while Pos ('stype=cast', Line) > 0 do
Actors := Actors + ', ' + TextBetween (Line, '"> ', '</a>');
Thx....
I have other problem...
before
For
thx....
sorry bad english...
I have other problem...
before
AfterTrey Parker
Matt Stone
Michael Dean Jacobs
Dian Bachar
Robyn Lynne
Ron Jeremy
I have solution?Trey Parker
, Matt Stone
, Michael Dean Jacobs
, Dian Bachar
, Robyn Lynne
, Ron Jeremy
For
?_?Trey Parker, Dian Bachar, Robyn Lynne Raab, Michael Dean Jacobs, Ron Jeremy, Andrew Kemler, David Dunn, Matt Stone, Toddy Walters, Chasey Lain, Juli Ashton, Masao Maki, Joseph Arsenault, Jeff Schubert, Desi Singh
thx....
sorry bad english...
You did not delete the '+ #13#10' from the code :
must be
Same with the other line. #13#10 in the code means a linebreak.
Code: Select all
Actors := TextBetween (Line, '">', '</a>') + #13#10;
Code: Select all
Actors := TextBetween (Line, '">', '</a>');
No need to feel sorry.. for sure it's better than my spanishsorry bad english...
Hi.
I have another question about this script ( filmaffinity ):
The summary of films contains genre e.g (300):
"GÉNERO Y CRÍTICA Aventuras. Acción. Bélico. Cómic / SINOPSIS: Adaptación del cómic de Frank Miller (autor del cómic de "Sin City") sobre la famosa batalla de las Termópilas"
"Aventuras. Acción. Bélico. Cómic" is the genre, and it is repeated in the Category and in the Description fields. The structure in Description field is always this:
Genres / SINOPSIS: Description
Is it possible to delete genres from the description field?
TY
I copy the part of the script I think have to be modified (I dont know how):
I have another question about this script ( filmaffinity ):
The summary of films contains genre e.g (300):
"GÉNERO Y CRÍTICA Aventuras. Acción. Bélico. Cómic / SINOPSIS: Adaptación del cómic de Frank Miller (autor del cómic de "Sin City") sobre la famosa batalla de las Termópilas"
"Aventuras. Acción. Bélico. Cómic" is the genre, and it is repeated in the Category and in the Description fields. The structure in Description field is always this:
Genres / SINOPSIS: Description
Is it possible to delete genres from the description field?
TY
I copy the part of the script I think have to be modified (I dont know how):
Code: Select all
// Critic
LineNr := FindLine('GÉNERO Y CRÍTICA', Page, 0);
if LineNr <> -1 then
begin
iL := 6;
Line := Page.GetString(LineNr + iL);
LineAux := Page.GetString(LineNr + iL+1);
while LineAux<>'</tr>' do
begin
Line := Line+LineAux;
iL := iL+1;
LineAux := Page.GetString(LineNr + iL+1);
end;
HTMLDecode(Line);
Line := StringReplace(Line, '<br />', #13#10);
Item := TextBetween (Line, '<td valign="top">','</td>');
Item := StringReplace (Item, 'á','á');
Item := StringReplace (Item, 'é','é');
Item := StringReplace (Item, 'í','í');
Item := StringReplace (Item, 'ó','ó');
Item := StringReplace (Item, 'ú','ú');
Item := StringReplace (Item, 'Á','Á');
Item := StringReplace (Item, 'É','É');
Item := StringReplace (Item, 'Í','Í');
Item := StringReplace (Item, 'Ó','Ó');
Item := StringReplace (Item, 'Ú','Ú');
Item := StringReplace (Item, '"','');
Item := StringReplace (Item, 'ñ','ñ');
Item := StringReplace (Item, '¿','¿');
SetField(fieldDescription, Trim(Item));
end;
// Category
LineNr := FindLine('GÉNERO Y CRÍTICA', Page, 0);
if LineNr <> -1 then
begin
Line := Page.GetString(LineNr + 6);
Item := TextBetween (Line, ' / ', ' / ');
if Length(Item)> 100 then
begin
Line := Page.GetString(LineNr + 6);
Item := TextBetween (Line, '<td valign="top">', ' /');
end;
HTMLDecode(Item);
SetField(fieldCategory, Trim (Item));
end;
Sure.z3us wrote:Is it possible to delete genres from the description field?
FilmAffinity (ES) version 2.33: http://www.bad4u.741.com/full/FilmAffin ... 8ES%29.ifs (copy link into a NEW browser window !)