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
  #451  
Old 04-08-2013, 07:54
rxlord rxlord is offline
Registered User
 
Join Date: Jul 2013
Location: india
Posts: 49
Thanks: 10
Thanked 16 Times in 13 Posts
rxlord is on a distinguished road
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
Reply With Quote
Sponsored Links
  #452  
Old 04-08-2013, 23:13
Shanilka Shanilka is offline
Registered User
 
Join Date: May 2013
Location: Srilanka
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Shanilka is on a distinguished road
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
Reply With Quote
  #453  
Old 05-08-2013, 01:20
shubhransh shubhransh is offline
Registered User
 
Join Date: Jul 2013
Location: Agra
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
shubhransh is on a distinguished road
Smile 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
Reply With Quote
  #454  
Old 05-08-2013, 08:21
sathishgamerguy sathishgamerguy is offline
Registered User
 
Join Date: Jul 2013
Location: India
Posts: 1
Thanks: 1
Thanked 0 Times in 0 Posts
sathishgamerguy is on a distinguished road
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)

Last edited by pakrat2k2; 05-08-2013 at 10:08.
Reply With Quote
  #455  
Old 05-08-2013, 10:09
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,043 Times in 3,086 Posts
pakrat2k2 is on a distinguished road
Quote:
Originally Posted by sathishgamerguy View Post
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.
Reply With Quote
  #456  
Old 05-08-2013, 19:54
sentinelks sentinelks is offline
Banned
 
Join Date: May 2013
Location: hjklò
Posts: 281
Thanks: 74
Thanked 320 Times in 157 Posts
sentinelks is on a distinguished road
Talking

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
Reply With Quote
The Following User Says Thank You to sentinelks For This Useful Post:
Kurutucu (05-08-2013)
  #457  
Old 05-08-2013, 20:58
Kurutucu Kurutucu is offline
Registered User
 
Join Date: Aug 2012
Location: Somewhere in the world
Posts: 159
Thanks: 78
Thanked 209 Times in 48 Posts
Kurutucu is on a distinguished road
@sentinelks

No. But thanks for the info
Reply With Quote
  #458  
Old 06-08-2013, 09:02
HellRazor HellRazor is offline
Registered User
 
Join Date: Mar 2007
Location: Q'onos
Posts: 182
Thanks: 213
Thanked 103 Times in 56 Posts
HellRazor is on a distinguished road
Quote:
Originally Posted by sathishgamerguy View Post
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.
Reply With Quote
  #459  
Old 07-08-2013, 21:06
trakiinas trakiinas is offline
Registered User
 
Join Date: Aug 2013
Location: Brazil
Posts: 17
Thanks: 17
Thanked 3 Times in 1 Post
trakiinas is on a distinguished road
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.
Reply With Quote
  #460  
Old 07-08-2013, 21:31
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,043 Times in 3,086 Posts
pakrat2k2 is on a distinguished road
what script are you using ?

LOL helps to READ what topic I was in

Last edited by pakrat2k2; 07-08-2013 at 22:10.
Reply With Quote
  #461  
Old 07-08-2013, 21:50
Kurutucu Kurutucu is offline
Registered User
 
Join Date: Aug 2012
Location: Somewhere in the world
Posts: 159
Thanks: 78
Thanked 209 Times in 48 Posts
Kurutucu is on a distinguished road
Quote:
Originally Posted by trakiinas View Post
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;
Reply With Quote
The Following 2 Users Say Thank You to Kurutucu For This Useful Post:
pakrat2k2 (07-08-2013), trakiinas (08-08-2013)
  #462  
Old 08-08-2013, 08:49
trakiinas trakiinas is offline
Registered User
 
Join Date: Aug 2013
Location: Brazil
Posts: 17
Thanks: 17
Thanked 3 Times in 1 Post
trakiinas is on a distinguished road
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.

Thank you for your patience.

Last edited by trakiinas; 08-08-2013 at 10:00.
Reply With Quote
  #463  
Old 08-08-2013, 10:10
y_thelastknight's Avatar
y_thelastknight y_thelastknight is offline
Registered User
 
Join Date: Mar 2010
Location: Canada
Posts: 437
Thanks: 616
Thanked 576 Times in 213 Posts
y_thelastknight is on a distinguished road
Quote:
Originally Posted by trakiinas View Post
I also can not change the installation directory.
You have already installed in that dir..unintall the old installation before installing this
Reply With Quote
The Following User Says Thank You to y_thelastknight For This Useful Post:
trakiinas (08-08-2013)
  #464  
Old 08-08-2013, 10:18
trakiinas trakiinas is offline
Registered User
 
Join Date: Aug 2013
Location: Brazil
Posts: 17
Thanks: 17
Thanked 3 Times in 1 Post
trakiinas is on a distinguished road
Quote:
Originally Posted by y_thelastknight View Post
You have already installed in that dir..unintall the old installation before installing this
OOO Thanks man!!

Now the error "DirectX" how to solve?
Reply With Quote
  #465  
Old 08-08-2013, 10:37
y_thelastknight's Avatar
y_thelastknight y_thelastknight is offline
Registered User
 
Join Date: Mar 2010
Location: Canada
Posts: 437
Thanks: 616
Thanked 576 Times in 213 Posts
y_thelastknight is on a distinguished road
What command line are you using???
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 10:42.


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