Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials
Register FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Search this Thread Display Modes
  #1081  
Old 04-05-2016, 20:38
Carldric Clement's Avatar
Carldric Clement Carldric Clement is offline
Registered User
 
Join Date: Aug 2014
Location: Toboh, Sabah, Malaysia
Posts: 595
Thanks: 599
Thanked 656 Times in 233 Posts
Carldric Clement is on a distinguished road
Quote:
Originally Posted by inatha3 View Post
How to Open URL after finish instalation and how to roll back install if corupt or eror ? thanks
Use This:
Code:
procedure CurStepChanged(CurStep: TSetupStep);
var
    URL: integer;
begin
  if (CurStep = ssPostInstall) and ISDoneError then
  begin
    Exec2(ExpandConstant('{uninstallexe}'), '/VERYSILENT', false);
  end;
    if (CurStep=ssPostInstall) and not (ISDoneError) then
    begin
        ShellExec('open', 'http://your.app.url/', '', '', SW_SHOW, ewNoWait, URL);
    end;
end;
Reply With Quote
Sponsored Links
  #1082  
Old 05-05-2016, 04:02
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
Quote:
Originally Posted by Carldric Clement View Post
Use This:
Code:
procedure CurStepChanged(CurStep: TSetupStep);
var
    URL: integer;
begin
  if (CurStep = ssPostInstall) and ISDoneError then
  begin
    Exec2(ExpandConstant('{uninstallexe}'), '/VERYSILENT', false);
  end;
    if (CurStep=ssPostInstall) and not (ISDoneError) then
    begin
        ShellExec('open', 'http://your.app.url/', '', '', SW_SHOW, ewNoWait, URL);
    end;
end;
still not working .
can you help me edit my script ? heheh
Attached Files
File Type: rar Main.rar (35.2 KB, 28 views)
Reply With Quote
  #1083  
Old 07-05-2016, 15:14
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,749
Thanks: 2,170
Thanked 11,206 Times in 2,307 Posts
Razor12911 is on a distinguished road
Try this
Attached Files
File Type: 7z Main.7z (7.6 KB, 67 views)
Reply With Quote
  #1084  
Old 22-05-2016, 00:10
Vivekkumar07032003 Vivekkumar07032003 is offline
Registered User
 
Join Date: May 2016
Location: India
Posts: 7
Thanks: 1
Thanked 1 Time in 1 Post
Vivekkumar07032003 is on a distinguished road
pleease fin me a way out.....

I am facing a problem whiceinstalling
It shows error 14 could not extract
Reply With Quote
  #1085  
Old 25-05-2016, 10:24
ffmla ffmla is offline
Registered User
 
Join Date: Nov 2014
Location: Digital world
Posts: 112
Thanks: 609
Thanked 65 Times in 41 Posts
ffmla is on a distinguished road
Wink

Quote:
Originally Posted by Vivekkumar07032003 View Post
I am facing a problem whiceinstalling
It shows error 14 could not extract
Hello Bro,
Check your compression.
Also make arc.ini file for the decompression process.
That'll helpfull
Reply With Quote
  #1086  
Old 01-06-2016, 06:33
TsubasaHP's Avatar
TsubasaHP TsubasaHP is offline
Registered User
 
Join Date: Jul 2012
Location: Iran
Posts: 31
Thanks: 9
Thanked 4 Times in 3 Posts
TsubasaHP is on a distinguished road
Hi, how we could add music function during installation in UltraARC Script?!
Reply With Quote
  #1087  
Old 07-06-2016, 06:10
hpmbot149 hpmbot149 is offline
Registered User
 
Join Date: May 2016
Location: United States
Posts: 3
Thanks: 8
Thanked 1 Time in 1 Post
hpmbot149 is on a distinguished road
Exclamation Video Background

Okay you can...........Simply add a loopable MP3 file called music.mp3 to the /Style folder in script folder.

I am asking how to use an MP4 video as the setup background?
I enabled the option "Video Background" in script and added a Video.MP4 to /Style but I got a black screen........
Any ideas on fixing that?

Last edited by hpmbot149; 07-06-2016 at 18:01. Reason: Replied to @TsubasaHP
Reply With Quote
  #1088  
Old 06-07-2016, 10:31
Vivekkumar07032003 Vivekkumar07032003 is offline
Registered User
 
Join Date: May 2016
Location: India
Posts: 7
Thanks: 1
Thanked 1 Time in 1 Post
Vivekkumar07032003 is on a distinguished road
Unable to show welcome page

I firstly had a problem with archives, but tried and got a fix…
But now when I compile the setup, the setup launches with the tasks page.
Does not show any welcome or dirselection pagepage

Please help

Last edited by Vivekkumar07032003; 06-07-2016 at 19:37. Reason: It was very large, so I asked what I wanted
Reply With Quote
  #1089  
Old 06-07-2016, 22:46
Prince4 Prince4 is offline
Registered User
 
Join Date: Mar 2015
Location: India->Delhi->Rohini
Posts: 121
Thanks: 109
Thanked 19 Times in 15 Posts
Prince4 is on a distinguished road
Quote:
Originally Posted by Vivekkumar07032003 View Post
I firstly had a problem with archives, but tried and got a fix…
But now when I compile the setup, the setup launches with the tasks page.
Does not show any welcome or dirselection pagepage

Please help
Check :
[CODE]
Code:
 function ShouldSkipPage1 (PageID: Integer): Boolean;
 begin
   if (PageID=wpSelectProgramGroup) or (PageID=wpReady) or     (PageID=wpSelectComponents) then Result:=true; 
 end;
Reply With Quote
  #1090  
Old 06-07-2016, 23:00
Prince4 Prince4 is offline
Registered User
 
Join Date: Mar 2015
Location: India->Delhi->Rohini
Posts: 121
Thanks: 109
Thanked 19 Times in 15 Posts
Prince4 is on a distinguished road
Quote:
Originally Posted by Vivekkumar07032003 View Post
I firstly had a problem with archives, but tried and got a fix…
But now when I compile the setup, the setup launches with the tasks page.
Does not show any welcome or dirselection pagepage

Please help
Check :
[CODE]
Code:
 function ShouldSkipPage1 (PageID: Integer): Boolean;
 begin
   if (PageID=wpSelectProgramGroup) or (PageID=wpReady) or     (PageID=wpSelectComponents) then Result:=true; 
 end;
Reply With Quote
  #1091  
Old 06-07-2016, 23:21
Vivekkumar07032003 Vivekkumar07032003 is offline
Registered User
 
Join Date: May 2016
Location: India
Posts: 7
Thanks: 1
Thanked 1 Time in 1 Post
Vivekkumar07032003 is on a distinguished road
I tried and deleted the command but that led to a problem in back button
It is seen but does not work
Reply With Quote
  #1092  
Old 08-07-2016, 21:01
Vivekkumar07032003 Vivekkumar07032003 is offline
Registered User
 
Join Date: May 2016
Location: India
Posts: 7
Thanks: 1
Thanked 1 Time in 1 Post
Vivekkumar07032003 is on a distinguished road
Some times the dir page opens , however 1 out of 20 times , please send me a video to how to fix it.
I am unable to compile e setup with welcome page,

I am using inno 5 Unicode and on win 10 64 bit.


Please , if your setups are all right send me the version which you are using
Reply With Quote
  #1093  
Old 09-07-2016, 03:19
Vivekkumar07032003 Vivekkumar07032003 is offline
Registered User
 
Join Date: May 2016
Location: India
Posts: 7
Thanks: 1
Thanked 1 Time in 1 Post
Vivekkumar07032003 is on a distinguished road
Please tell me about the sections which serializes the pages
Reply With Quote
  #1094  
Old 16-07-2016, 01:33
Jawahir95 Jawahir95 is offline
Registered User
 
Join Date: Jul 2016
Location: Iraq
Posts: 6
Thanks: 18
Thanked 1 Time in 1 Post
Jawahir95 is on a distinguished road
Hi, can any one tell me the code of compact view? Please. Thanks.
Reply With Quote
  #1095  
Old 15-09-2016, 04:06
mikey26 mikey26 is offline
Registered User
 
Join Date: Dec 2008
Location: south africa
Posts: 276
Thanks: 124
Thanked 110 Times in 61 Posts
mikey26 is on a distinguished road
Send a message via AIM to mikey26 Send a message via Yahoo to mikey26
omg @ramazan19833 everywhere u just spam and never clear about your problems if you actually have any.you created a new thread with this same post wtf dude?
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
INNO TROUBLESHOOT - Tutorials and Answers about INNO Setup REV0 Conversion Tutorials 129 21-05-2021 05:51
INNO TUTORIAL - Using Unicode and ANSI Versions of INNO Setup REV0 Conversion Tutorials 51 26-03-2015 06:57
Copy file with Inno Setup Script emrahcey Software 1 02-07-2010 08:24



All times are GMT -7. The time now is 22:49.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com