I'll put that on my to-do list

Problem fixed:Dirk wrote: With movie 'falling down' --> not OK
I found there to be another little 'bug' in this script.Marcel wrote:after a couple of random tests with my adjustment, I found out that It wasn't good, because there came rubbish at the begining of categorie.
So these are the final adustments.
Value := TextBetween(PageText, '<div id="film_info" style="height: 465px">', '<br />');
if Value = '' then
begin
Value := TextBetween(PageText, '<div id="film_info" style="height: 490px">', '<br />');
end;
Line := RemainingText;
Code: Select all
Value := TextBetween(PageText, '<div id="film_info" style="height: 465px">', '<br />');
if Value = '' then
Value := TextBetween(PageText, '<div id="film_info" style="height: 490px">', '<br />');
if Value = '' then
Value := TextBetween(PageText, '<div id="film_info" style="height: 446px">', '<br />');
Line := RemainingText;
Code: Select all
Code: Select all
Value := TextBetween(PageText, '<div id="film_info" style="height: ', '<br />');
Line := RemainingText;
Value := TextAfter(Value, '>');