Inno Setup Wizard Page onscreen placement (off-centre position) -
i specify wizard pages not open in middle of screen default i.e. position them off-centre using x,y coordinates (or similar offset). because call program opens in middle of screen, obscuring progress page. if open wizard pages offset left or top, example, mean both windows visible @ same time, without having reposition them. possible and, if so, how done?
just offset wizardform.left
, wizardform.top
needed:
procedure initializewizard(); begin wizardform.left := wizardform.left - scalex(320); wizardform.top := wizardform.top - scaley(160); end;
or maybe:
procedure initializewizard(); begin wizardform.left := wizardform.left div 2; wizardform.top := wizardform.top div 2; end;
Comments
Post a Comment