Anyone know how to put a percentage% of the progress bar down the bar
ex: edited image in photoshop inno setup 5.5.1-unicode+Script ISDone 0.6 thanks

Anyone know how to put a percentage% of the progress bar down the bar
ex: edited image in photoshop inno setup 5.5.1-unicode+Script ISDone 0.6 thanks

If you want to put the percentage label on the Installing wizard page, then I think it is not possible. But you could use the CreateOutputProgressPage which let you control the progressbar and you can add a percentage label via Pascal Script.
[Code]
procedure InitializeWizard();
var
  Page: TOutputProgressWizardPage;
  PercentLabel: TLabel;
begin
  Page := CreateOutputProgressPage('Caption', 'Description');
  Page.ProgressBar.Show;
  PercentLabel := TLabel.Create(Page);
  PercentLabel.Top := Page.ProgressBar.Top + 20;
  PercentLabel.Caption := '0%';
  ...
end;
Also read this question: Inno Setup Simple progress page for Run section. It demonstrates how to control the progress.