FileForums

FileForums (https://fileforums.com/index.php)
-   Conversion Tutorials (https://fileforums.com/forumdisplay.php?f=55)
-   -   Blackbox Inno Setup Script (https://fileforums.com/showthread.php?t=94425)

Carldric Clement 04-05-2016 20:38

Quote:

Originally Posted by inatha3 (Post 448815)
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;


inatha3 05-05-2016 04:02

1 Attachment(s)
Quote:

Originally Posted by Carldric Clement (Post 448830)
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

Razor12911 07-05-2016 15:14

1 Attachment(s)
Try this

Vivekkumar07032003 22-05-2016 00:10

pleease fin me a way out.....
 
I am facing a problem whiceinstalling
It shows error 14 could not extract

ffmla 25-05-2016 10:24

Quote:

Originally Posted by Vivekkumar07032003 (Post 449163)
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

TsubasaHP 01-06-2016 06:33

Hi, how we could add music function during installation in UltraARC Script?!

hpmbot149 07-06-2016 06:10

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?:)

Vivekkumar07032003 06-07-2016 10:31

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

Prince4 06-07-2016 22:46

Quote:

Originally Posted by Vivekkumar07032003 (Post 449880)
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;


Prince4 06-07-2016 23:00

Quote:

Originally Posted by Vivekkumar07032003 (Post 449880)
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;


Vivekkumar07032003 06-07-2016 23:21

I tried and deleted the command but that led to a problem in back button
It is seen but does not work

Vivekkumar07032003 08-07-2016 21:01

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

Vivekkumar07032003 09-07-2016 03:19

Please tell me about the sections which serializes the pages

Jawahir95 16-07-2016 01:33

Hi, can any one tell me the code of compact view? Please. Thanks.

mikey26 15-09-2016 04:06

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?

Grumpy 15-09-2016 06:04

Quote:

Originally Posted by mikey26 (Post 451653)
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?

He was warned about the spamming, he is now banned for 1 Month to give him enough time to read the Forum Rules. ;)

Razor12911 17-09-2016 18:17

Phew, at least now my PM box will rest.

52098994 04-10-2016 02:54

Can help me to solve this error Thank you very much
 
Can help me to solve this error
Thank you very much:)

http://hoop8.com/1610A/MXPGfGEU.png

JRD! 04-10-2016 03:35

Quote:

Originally Posted by 52098994 (Post 452432)
Can help me to solve this error
Thank you very much:)

http://hoop8.com/1610A/MXPGfGEU.png

Your define is not correct: {#AppName} and you have an exclamation mark after the end bracket...

Changes like this:

Code:

WizardForm.Caption:= 'Select Dir «{#AppName}»';
If you want display chinese characters look this:

https://hachinouta.wordpress.com/201...-in-innosetup/

52098994 04-10-2016 04:12

Quote:

Originally Posted by JRD! (Post 452435)
Your define is not correct: {#AppName} and you have an exclamation mark after the end bracket...

Changes like this:

Code:

WizardForm.Caption:= 'Select Dir «{#AppName}»';
If you want display chinese characters look this:

https://hachinouta.wordpress.com/201...-in-innosetup/

Thank you very much:p

52098994 04-10-2016 04:15

Quote:

Originally Posted by JRD! (Post 452435)
Your define is not correct: {#AppName} and you have an exclamation mark after the end bracket...

Changes like this:

Code:

WizardForm.Caption:= 'Select Dir «{#AppName}»';
If you want display chinese characters look this:

https://hachinouta.wordpress.com/201...-in-innosetup/

Ask you a question
Automatically choose the biggest drive installation directory?

coliotte 06-11-2016 05:49

..

lolaya 06-11-2016 09:56

Quote:

Originally Posted by coliotte (Post 453610)
..

xD

Fakhruddinmaruf_ 08-11-2016 01:29

Why there is no About Button?
how if you make it?

Meireles Silva 18-12-2016 13:22

Command line invalid when installing DirectX..
how to solve?

Skhakz 20-12-2016 21:41

How can i extract encrypted bin archive through blackbox script. Can u show the script part to add password in installer.

prince8889 03-01-2017 07:29

Can I Use pZlib library by Razor12911 With This Script ??

pakrat2k2 03-01-2017 08:31

test & post back your results.

Abin Antony 16-01-2017 02:59

1 Attachment(s)
I.m not getting the welcome window .After the splash, this is what I get is this(<attachment>).Pleases look into it.

rambohazard 16-01-2017 05:12

you need add "DisableWelcomePage=false" in inno. Sorry for my bad english

Abin Antony 17-01-2017 04:55

Quote:

Originally Posted by rambohazard (Post 455245)
you need add "DisableWelcomePage=false" in inno. Sorry for my bad english

Is there any specific line or column

Abin Antony 17-01-2017 05:06

Quote:

Originally Posted by rambohazard (Post 455245)
you need add "DisableWelcomePage=false" in inno. Sorry for my bad english

Not working.(Be a bit accurate about where to add).

Fakhruddinmaruf_ 17-01-2017 13:30

help. Why the progress on my setup is more than 100%?

pakrat2k2 17-01-2017 13:54

Quote:

Originally Posted by Fakhruddinmaruf_ (Post 455279)
help. Why the progress on my setup is more than 100%?

See original post #2, It shows ( 0,100 ...

The 100 is %, so if only 1 file that would be correct, IF 2 files the number has to be 50, all depends on how many files you ended up with..

READ the entire first post until you understand it.

MRMAF 26-01-2017 09:37

Hello ....Please how can i enable slidshow in

BlackBox v2 Designer it's always disabled .....

Thanks

rambohazard 27-01-2017 02:30

Quote:

Originally Posted by Abin Antony (Post 455272)
Is there any specific line or column

In "[Setup]" section, you can add this line: "DisableWelcomePage=false". The newers versions of inno have the Welcome Page disabled by default.
Once again, sorry for the english, i'm brazilian

Abin Antony 28-01-2017 02:40

Thank you it is working.But now I am not seeing the second page.:confused:
:confused:

Abin Antony 03-02-2017 07:59

I need to unpack 4 .bin files compressed with arc,precomp,serp,arc.Help

r4ve 05-02-2017 04:47

How can I remove the CommonRedist folder in my Repacks ?
Even when I uncheck install commonredist, it installs it

Is there any ways to stop installing it with my setups ?

(I use the BlackBox Script (Main One) )

Thanks

rinaldo 05-02-2017 07:13

you want to remove redist from the main.iss ?
because everything else works :rolleyes:


All times are GMT -7. The time now is 20:13.

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