1

像我这样的朋友这个脚本文本只出现在“wpselectTasks”页面上将wpSelectDir替换为wpSelectTasks Inno setup compile,但“wpselectTasks”页面上没有任何内容使用wpSelectDir将是正常的。

**(thus appears on the page wpSelectDir)**
var
  avisoLabel: TLabel;
procedure InitializeWizard();
var
  aviso: TLabel;
begin

avisoLabel := TLabel.Create(WizardForm);
avisoLabel.Left := ScaleX(0);
avisoLabel.Top := ScaleY(190)
avisoLabel.Width := ScaleY(185)
avisoLabel.Height := ScaleY(13)
avisoLabel.Parent:= WizardForm.SelectDirPage;
avisoLabel.Transparent:=true;
avisoLabel.Caption := 'OBS: Sem estes programas instalados o jogo não inicia';
//avisoLabel.AutoSize := True;
end;

procedure CurPageChanged(CurPageID: Integer);
begin
avisoLabel.Visible := CurPageID = wpSelectDir;
end;

**(modifying for wpSelectTasks nothing appears)**

var
  avisoLabel: TLabel;
procedure InitializeWizard();
var
aviso: TLabel;
begin

avisoLabel := TLabel.Create(WizardForm);
avisoLabel.Left := ScaleX(0);
avisoLabel.Top := ScaleY(190)
avisoLabel.Width := ScaleY(185)
avisoLabel.Height := ScaleY(13)
avisoLabel.Parent:= WizardForm.SelectTasksPage;
avisoLabel.Transparent:=true;
avisoLabel.Caption := 'OBS: Sem estes programas instalados o jogo não inicia';
//avisoLabel.AutoSize := True;
end;

procedure CurPageChanged(CurPageID: Integer);
begin
avisoLabel.Visible := CurPageID = wpSelectTasks;
end;
4

0 回答 0