interesting - yours displays the text on the finished page just fine.
As for compression, I think lzma2/ultra64 is the tightest that inno can offer, without having to resort to using .arc files like some scripts around the forums.
EDIT: I messed with my original script I had pasted - turns out if I change this
Code:
procedure CurPageChanged(CurPageID: Integer);
var
FinishedLbl2: TLabel;
begin
if (CurPageID = wpFinished) then FinishedLbl2.Caption:= WizardForm.FinishedLabel.Caption;
end;
to this:
Code:
procedure CurPageChanged(CurPageID: Integer);
var
FinishedLbl2: TLabel;
begin
FinishedLbl2.Caption:= WizardForm.FinishedLabel.Caption;
end;
mine works just fine. ::sigh::