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)

pakrat2k2 29-07-2013 09:33

do you have k-lite mega codec pack installed ?

if not that may be why video doesnt show up only black screen.

basic23 29-07-2013 14:12

@ pakrat2k2
Of course I installed the k-lite mega codec pack.PLAY WITH PLAYER "CLASSIC,vlc...".
But in the installer BlackImage No Video,No Sound.Error.I tried on another PC,the same problem not Run Video BlackImage No Video,No Sound.Error.
Download Assassin's Creed III,And video runs.I copied that video to me,Compile and run Setup.exe
The same problem not Run Video BlackImage No Video,No Sound.Error.
I think there's something wrong in the Script.

Kurutucu 29-07-2013 16:46

Video script by y_thelastknight. He says script works perfect.

basic23 30-07-2013 12:39

@Kurutucu
Have you tried it?
Or you have a good one?
Please UPLOADED FOR ME.

Kurutucu 30-07-2013 13:41

I don't have with video and slideshow background. Because I don't like backgrounds :)

pakrat2k2 30-07-2013 21:38

Quote:

Originally Posted by Kurutucu (Post 421495)
I don't have with video and slideshow background. Because I don't like backgrounds :)

think you need to remove this from first post

-Added original Blackbox Logo font. ( ooops, I wanted to say the logo itself NOT the font ) thanks WaltonSimons for pointing that out.

because logo is still yours !!! NOT blackbox, as it should be, according to what you wrote.

basic23 03-08-2013 04:21

@pakrat2k2

I tried in vain.

How to change default as compact mode ?
Thanks.

WaltonSimons 03-08-2013 06:22

Quote:

Originally Posted by pakrat2k2 (Post 421501)
think you need to remove this from first post

-Added original Blackbox Logo font.

because logo is still yours !!! NOT blackbox, as it should be, according to what you wrote.

I think he shouldn't. He added the FONT that is used to make the original Blackbox Logo -- not the logo itself. :P

pakrat2k2 03-08-2013 11:56

oops misread that entirely.... I wanted to say he should add the logo itself, but not really important as the end user has the font & can easily enough add there own logo, much like kurutucu has done.

thanks for pointing that out :o

sentinelks 03-08-2013 14:06

some days I'm ascertaining script like this, as in nascar .. opening and testing of the new blackbox here, I've noticed a defect on the video and on the cancel button during installation.
it's a shame because it is a great visual impact this box:(

rxlord 04-08-2013 07:54

how to use video feature
 
hey i know how to use slideshow feature but plz tell me how to use video feature i mean how to enable video and disable slideshow and where to place the video we wanna play and what name should be of video

Shanilka 04-08-2013 23:13

Thanks for the Setup script!

When I compile the setup and run it,it stops working in 2 seconds at the installing page
WHY? MY PC OS is win8 Pro 64bit

shubhransh 05-08-2013 01:20

Help me i am Newbie
 
Hello I am Newbie in Adding Skins but wanted to add this blackbox skin Please Create a Tutorial in easy steps :)

sathishgamerguy 05-08-2013 08:21

Hi In Innosetup I want Know How To Change The COmpression Methods
And How To Convert To A bin File Without Using Commands

how to add the video what format it is

Don't Double-post, edit your last post if no one has posted after you ( by pakrat2k2)

pakrat2k2 05-08-2013 10:09

Quote:

Originally Posted by sathishgamerguy (Post 421617)
Hi In Innosetup I want Know How To Change The COmpression Methods
And How To Convert To A bin File Without Using Commands

simple goto HELP in INNO and look them up.

sentinelks 05-08-2013 19:54

add a second progress bar kurutucu, it is very nice for the version no SlideShow

Code:

#define SecondProgressBar
  #ifdef SecondProgressBar
  LabelPct2: TLabel;
  ISDoneProgressBar2:TNewProgressBar;
  #endif
#ifdef SecondProgressBar
  if CurrentPct<=1000 then ISDoneProgressBar2.Position := CurrentPct;
  LabelPct2.Caption := IntToStr(CurrentPct div 10)+'.'+chr(48 + CurrentPct mod 10)+'%';
#endif
  LabelCurrFileName.Caption:=' Extracting File: '+MinimizePathName(CurrentFile, LabelCurrFileName.Font, LabelCurrFileName.Width-ScaleX(100));
  LabelTime1.Caption:=' Time Elapsed: '+TimeStr2;
  LabelTime2.Caption:='Time Remaining: '+TimeStr1;
 #ifdef SecondProgressBar
  ISDoneProgressBar2.Hide;
  LabelPct2.Hide;
  #endif
  #ifdef SecondProgressBar
  PBTop:=PBTop+ScaleY(25);
  ISDoneProgressBar2 := TNewProgressBar.Create(WizardForm);
  with ISDoneProgressBar2 do begin
    Parent  := WizardForm;
    Height  := 25;
    Left    := ScaleX(77);
    Top      := PBTop+ScaleY(8);
    Width    := ScaleX(500);
    Max      := 1000;
  end;
  LabelCurrFileName := TLabel.Create(WizardForm);
  with LabelCurrFileName do begin
    Parent  := WizardForm;
    AutoSize := False;
    Width    := ISDoneProgressBar2.Width+ScaleX(30);
    Left    := ISDoneProgressBar2.Left;
    Top      := PBTop-20;
  end;

  LabelTime1 := TLabel.Create(WizardForm);
  with LabelTime1 do begin
    Parent  := WizardForm;
    AutoSize := False;
    Width    := ISDoneProgressBar2.Width div 2;
    Left    := ISDoneProgressBar2.Left;
    Top      := PBTop + ScaleY(30);
  end;
  LabelTime2 := TLabel.Create(WizardForm);
  with LabelTime2 do begin
    Parent  := WizardForm;
    AutoSize := False;
    Width    := LabelTime1.Width+ScaleX(40);
    Left    := 400;
    Top      := LabelTime1.Top;
  end;
  LabelPct2 := TLabel.Create(WizardForm);
  with LabelPct2 do begin
    Parent    := WizardForm;
    AutoSize  := true;
    Font.Height:=-24;
    Left      := ISDoneProgressBar2.Left -33 + ISDoneProgressBar2.Width div 2;
    Top      := ISDoneProgressBar2.Top + ScaleY(70);
  end;
  #endif

http://i.imgur.com/FgHdrBZ.png

Kurutucu 05-08-2013 20:58

@sentinelks

No. But thanks for the info :)

HellRazor 06-08-2013 09:02

Quote:

Originally Posted by sathishgamerguy (Post 421635)
Plz upload Video Or Images tutorial how to use CIU

Plz learn to read. If you bothered to check you would have found out that CI and CIU aren't that different. And there is a sticky about CI.
http://fileforums.com/showthread.php?t=92805

This thread is about Blackbox script.

trakiinas 07-08-2013 21:06

hello guys, I'm having trouble extracting my files' SETUP-2.bin, SETU-3.bin, SETUP-4.bin.

I did everything right, but this installer only extracted the "SETUP-1.bin"

What do I have to do for everyone to be extracted?



PS: Sorry for my bad english, I'm Brazilian and use google translator.

pakrat2k2 07-08-2013 21:31

what script are you using ?

LOL helps to READ what topic I was in :o:p

Kurutucu 07-08-2013 21:50

Quote:

Originally Posted by trakiinas (Post 421702)
hello guys, I'm having trouble extracting my files' SETUP-2.bin, SETU-3.bin, SETUP-4.bin.

I did everything right, but this installer only extracted the "SETUP-1.bin"

What do I have to do for everyone to be extracted?



PS: Sorry for my bad english, I'm Brazilian and use google translator.

Check Archives.ini. Example:

Code:

if not ShowChangeDiskWindow ('Please Insert Disk To Continue...', ExpandConstant('{src}'),'Setup-1.bin') then break;
if not ISArcExtract ( 0, 25, ExpandConstant('{src}\Setup-1.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;
if not ShowChangeDiskWindow ('Please Insert Disk 2 To Continue...', ExpandConstant('{src}'),'Setup-2.bin') then break;
if not ISArcExtract ( 0, 25, ExpandConstant('{src}\Setup-2.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;
if not ShowChangeDiskWindow ('Please Insert Disk 3 To Continue...', ExpandConstant('{src}'),'Setup-3.bin') then break;
if not ISArcExtract ( 0, 25, ExpandConstant('{src}\Setup-3.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;
if not ShowChangeDiskWindow ('Please Insert Disk 4 To Continue...', ExpandConstant('{src}'),'Setup-4.bin') then break;
if not ISArcExtract ( 0, 25, ExpandConstant('{src}\Setup-4.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;


trakiinas 08-08-2013 08:49

MURUTUCU, thank you for helping me, but now I'm having trouble installing "DirectX".

Appears the error: command line option invalid.


What do I do?

I also can not change the installation directory. http://img5.imageshack.us/img5/4579/ywvx.jpg

Thank you for your patience.
:)

y_thelastknight 08-08-2013 10:10

Quote:

Originally Posted by trakiinas (Post 421717)
I also can not change the installation directory.

You have already installed in that dir..unintall the old installation before installing this

trakiinas 08-08-2013 10:18

Quote:

Originally Posted by y_thelastknight (Post 421719)
You have already installed in that dir..unintall the old installation before installing this

OOO Thanks man!!

Now the error "DirectX" how to solve?

y_thelastknight 08-08-2013 10:37

What command line are you using???

trakiinas 08-08-2013 11:04

this command and it came in the script.
http://img197.imageshack.us/img197/397/h9m2.jpg

artdekdok 08-08-2013 11:23

Quote:

Originally Posted by trakiinas (Post 421722)
this command and it came in the script.

use /silent

trakiinas 08-08-2013 11:30

Quote:

Originally Posted by artdekdok (Post 421723)
use /silent

Excuse me for my ignorance, but I'm newbie and do not know any command, could you give me an example?

pakrat2k2 08-08-2013 11:42

in your last picture you posted, you have the line highlighted change the /q to /silent

trakiinas 08-08-2013 12:47

Quote:

Originally Posted by pakrat2k2 (Post 421725)
in your last picture you posted, you have the line highlighted change the /q to /silent

Thanks man!!

Now I think the first game is ready repack in style "black box".
Now I will try to see you all this ok. :D

trakiinas 09-08-2013 05:54

hello guys, I wonder if there is any command to install the shortcut you create piece administrator permission to start.

excuse me the ingles bad.

pakrat2k2 09-08-2013 11:17

Quote:

Originally Posted by trakiinas (Post 421749)
hello guys, I wonder if there is any command to install the shortcut you create piece administrator permission to start.

excuse me the ingles bad.

open up INNO goto help then index search for administrator..
ALL information is there, for each section.

trakiinas 09-08-2013 12:09

Quote:

Originally Posted by pakrat2k2 (Post 421757)
open up INNO goto help then index search for administrator..
ALL information is there, for each section.

Thanks for helping me, but I do not speak English and do not understand anything that is written there, if you could give me an example, I will be very grateful to you.

because I really need to put the "Resident Evil Operation Raccoon City" with with permicções administrator for q I can play the "DLC Spec ops.


I'm sorry I do not know very well use INNO.


I use the google translator.

pakrat2k2 09-08-2013 12:49

step1
http://img694.imageshack.us/img694/926/sr7w.jpg

step 2

http://img824.imageshack.us/img824/1100/2l3a.jpg

trakiinas 09-08-2013 14:43

Quote:

Originally Posted by pakrat2k2 (Post 421759)

Thank you friend, now I'll try to do what I want.

Shanilka 09-08-2013 23:55

Why does this setup stops working at 1%
 
Kurutucu You Rock Dude! BUT WHY DOES THIS SETUP STOPS WORKING AT 1% in the INSTALLING PAGE

My OS Windows 8 Pro

PLEASE ANSWER PLEASE PLEASE PLEASE :confused::confused::confused:

Kurutucu 11-08-2013 05:19

Check your compressed bin file. If you use arc use my compressor in Kurutucu Compressor folder.

trakiinas 15-08-2013 15:19

hello friends, I would like to know a command line to run a reg file in silent mode, without the confirmation message appears.

pakrat2k2 15-08-2013 15:25

you could have google it, & found answer quicker then posting question.

REGEDIT.EXE [ /S ] anyname.REG

trakiinas 15-08-2013 15:54

Quote:

Originally Posted by pakrat2k2 (Post 421920)
you could have google it, & found answer quicker then posting question.

REGEDIT.EXE [ /S ] anyname.REG

thanks for helping me, but I've tried this method did not work for me.:(


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

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