Okay.... I am back with new questions
I want to fusker a site and the setup:
case ScannerEvent of
Starting:
begin
for x = 12900 to 13900 do begin
lnk = 'http://site.com/image.php?id='+x;
Scanlink(lnk);
end;
end;
BeforeAdding:
begin
AcceptEvent = (DocumentType ~= 'image');
end;
else
AcceptEvent = No;
end;
...works fine. I just have a problem... I need to attach the '&size=full&time' after every number: like 12900&size=full&time, 12901&size=full&time, 12902&size=full&time etc. etc. otherwise I am stuck with only the thumbnails. How do I do this??
And its a mime extension site - this is set for documentType 'image' - what do I put in the AcceptEvent line if I also want all kind of videos?? like avi, wmv, mp4, flv. ??
Can you help me with this??
Thanks a lot.
Kind regards
Stjernquist