View Single Post
  #1  
Old 04-05-2016, 04:20
inatha3 inatha3 is offline
Registered User
 
Join Date: Feb 2015
Location: indonesia
Posts: 21
Thanks: 17
Thanked 2 Times in 2 Posts
inatha3 is on a distinguished road
Question how open website after installer success

how open website after installer success ? im using Blackbox Inno Setup Script
edit main script with code :

procedure CurStepChanged(CurStep: TSetupStep);
var
ErrCode: integer;
begin
if (CurStep=ssDone) then
begin
ShellExec('open', 'http://your.app.url/', '', '', SW_SHOW, ewNoWait, ErrCode);
end;
end;

succes open URL after install but my game not instaled .

thanks
Reply With Quote
Sponsored Links