Search found 4 matches

by Hugo74
2006-09-30 10:43:54
Forum: Ant Movie Catalog > Scripts
Topic: Scripts that need to be fixed / Scripts à corriger
Replies: 501
Views: 240648

Cinefacts.de made some changes in the searchfunction.
You will get now DVD & Cinema Movies as one result.
I added (DVD) and (Kino) at the beginning of every Title result,
so you can see from where you get the description.


(***************************************************

Ant Movie Catalog ...
by Hugo74
2006-09-26 08:59:47
Forum: Ant Movie Catalog > Scripts
Topic: Scripts that need to be fixed / Scripts à corriger
Replies: 501
Views: 240648

@reh
It is nearly the same procedure.
(Script version was 1.3)

function AddMoviesTitles(Page: TStringList; var LineNr: Integer) : string;
var
Line: string;
MovieTitle, MovieAddress: string;
StartPos, EndPos, NumTitles,MK: Integer;
begin
result := '';
Line := Page.GetString(LineNr ...
by Hugo74
2006-08-31 14:02:09
Forum: Ant Movie Catalog > Scripts
Topic: Scripts that need to be fixed / Scripts à corriger
Replies: 501
Views: 240648

I also fixed the Cinefacts.de script.
Problem was that no Bonusmaterial was imported.
I added a new option to import only the picture without and
other information.


(***************************************************

Ant Movie Catalog importation script
www.antp.be/software/moviecatalog ...
by Hugo74
2006-08-31 13:40:50
Forum: Ant Movie Catalog > Scripts
Topic: Scripts that need to be fixed / Scripts à corriger
Replies: 501
Views: 240648

Fix for ofdb problem!
Just change the AddMoviesTitles Procedure to this...


procedure AddMoviesTitles(Page: TStringList; var LineNr: Integer);
var
Line: string;
MovieTitle, MovieAddress: string;
StartPos, EndPos,MK: Integer;

begin
Line := Page.GetString(LineNr);
repeat
mk := 0;
StartPos ...