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
  #16  
Old 04-11-2013, 00:01
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
Version v1.2.0 Avaliable


Changes

-Fixed some bug
-Updated Custom Component section
__________________
Reply With Quote
The Following 2 Users Say Thank You to y_thelastknight For This Useful Post:
aj12345 (27-11-2013), varma1993 (06-11-2013)
Sponsored Links
  #17  
Old 04-11-2013, 03:40
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 varma1993 View Post
how to hide password from setup.ini
There is no option for it.
Reply With Quote
The Following 2 Users Say Thank You to y_thelastknight For This Useful Post:
aj12345 (27-11-2013), varma1993 (06-11-2013)
  #18  
Old 04-11-2013, 23:00
ashyamsundar's Avatar
ashyamsundar ashyamsundar is offline
Registered User
 
Join Date: Jun 2013
Location: Tamilnadu
Posts: 24
Thanks: 17
Thanked 3 Times in 3 Posts
ashyamsundar is on a distinguished road
1) Splash screen ?
2) any way to integrate setup.ini to setup.exe ?
3) music ?

Last edited by ashyamsundar; 04-11-2013 at 23:34.
Reply With Quote
The Following User Says Thank You to ashyamsundar For This Useful Post:
aj12345 (27-11-2013)
  #19  
Old 04-11-2013, 23:34
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
Quote:
Originally Posted by ashyamsundar View Post
1) Splash screen ?
2) any way to integrate setup.ini to setup.exe ?
copy file: Splash.png and isgsg.dll, to include folder

Last edited by sentinelks; 31-01-2014 at 23:42.
Reply With Quote
The Following 2 Users Say Thank You to sentinelks For This Useful Post:
aj12345 (27-11-2013), mht1526 (30-03-2015)
  #20  
Old 05-11-2013, 11:16
triviet4 triviet4 is offline
Registered User
 
Join Date: Mar 2009
Location: Vietnamese
Posts: 4
Thanks: 2
Thanked 5 Times in 4 Posts
triviet4 is on a distinguished road
I want DirectX, Visual C++ ... All Checked Default, how?

How All ready checked?
Attached Images
File Type: png All Checked Default.png (171.3 KB, 510 views)

Last edited by triviet4; 05-11-2013 at 16:26.
Reply With Quote
The Following 2 Users Say Thank You to triviet4 For This Useful Post:
aj12345 (27-11-2013), Prince Soft (05-11-2016)
  #21  
Old 05-11-2013, 11:57
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 triviet4 View Post
I want DirectX, Visual C++ ... All Checked Default, how?

All ready checked, don't check
i didn't understand you..do you want checked all or don't check

if you want all checked then find these lines

Code:
  ShortcutCB := TNewCheckBox.Create(WizardForm);
  with ShortcutCB do
  begin

  DirectXCB := TNewCheckBox.Create(WizardForm);
  with DirectXCB do
  begin

  VisualCCB := TNewCheckBox.Create(WizardForm);
  with VisualCCB do
  begin

  SocialCB := TNewCheckBox.Create(WizardForm);
  with SocialCB do
  begin
and paste this line under those line..
Reply With Quote
The Following 3 Users Say Thank You to y_thelastknight For This Useful Post:
aj12345 (27-11-2013), mht1526 (30-03-2015), varma1993 (06-11-2013)
  #22  
Old 05-11-2013, 15:55
triviet4 triviet4 is offline
Registered User
 
Join Date: Mar 2009
Location: Vietnamese
Posts: 4
Thanks: 2
Thanked 5 Times in 4 Posts
triviet4 is on a distinguished road
i want all checked

i found those line

Code:
  ShortcutCB := TNewCheckBox.Create(WizardForm);
  with ShortcutCB do
  begin
    Parent := WizardPanel;
    Left :=(116);
    Top :=(299);
    Width := ScaleX(14);
    Height := ScaleY(14);
  end;



  DirectXCB := TNewCheckBox.Create(WizardForm);
  with DirectXCB do
  begin
    Parent := WizardPanel;
    Left :=(116);
    Top :=(320);
    Width := ScaleX(14);
    Height := ScaleY(14);
  end;



  VisualCCB := TNewCheckBox.Create(WizardForm);
  with VisualCCB do
  begin
    Parent := WizardPanel;
    Left :=(250);
    Top :=(320);
    Width := ScaleX(14);
    Height := ScaleY(14);
  end;


  SocialCB := TNewCheckBox.Create(WizardForm);
  with SocialCB do
  begin
    Parent := WizardPanel;
    Left :=(410);
    Top :=(320);
    Width := ScaleX(14);
    Height := ScaleY(14);
  end;
but paste what line? under those line..
can you details, please?

SORRY, MY ENGLISH'S BAD

Last edited by triviet4; 05-11-2013 at 16:13.
Reply With Quote
The Following User Says Thank You to triviet4 For This Useful Post:
aj12345 (27-11-2013)
  #23  
Old 05-11-2013, 23:01
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
triviet4

all checked yes

copy in:
if CurPageID=wpSelectDir then
begin

DirectXCB.Checked:=True;
VisualCCB.Checked:=True;
SocialCB.Checked:=True;
ShortcutCB.Checked:=True;


CheckAll
Code:
DirectXCB.Checked:=True;
VisualCCB.Checked:=True;
SocialCB.Checked:=True;
ShortcutCB.Checked:=True;
-------------------------------------------

Enabled True or False
True..
Code:
DirectXCB.Enabled:=True;
VisualCCB.Enabled:=True;
SocialCB.Enabled:=True;
ShortcutCB.Enabled:=True;
False..
Code:
DirectXCB.Enabled:=False;
VisualCCB.Enabled:=False;
SocialCB.Enabled:=False;
ShortcutCB.Enabled:=False;

Last edited by sentinelks; 05-11-2013 at 23:19.
Reply With Quote
The Following 3 Users Say Thank You to sentinelks For This Useful Post:
aj12345 (27-11-2013), mht1526 (30-03-2015), triviet4 (06-11-2013)
  #24  
Old 06-11-2013, 00:08
varma1993's Avatar
varma1993 varma1993 is offline
Registered User
 
Join Date: Mar 2012
Location: Hyderabad
Posts: 29
Thanks: 23
Thanked 8 Times in 6 Posts
varma1993 is on a distinguished road
Send a message via AIM to varma1993 Send a message via Yahoo to varma1993
please add video to this script
Reply With Quote
The Following User Says Thank You to varma1993 For This Useful Post:
aj12345 (27-11-2013)
  #25  
Old 06-11-2013, 04:58
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
Quote:
Originally Posted by varma1993 View Post
please add video to this script
Test Video and Slides done

Last edited by sentinelks; 06-11-2013 at 06:25.
Reply With Quote
The Following 3 Users Say Thank You to sentinelks For This Useful Post:
aj12345 (27-11-2013), varma1993 (06-11-2013), y_thelastknight (06-11-2013)
  #26  
Old 06-11-2013, 07:30
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
Thumbs up

Sript Video-Slides-Audio by y_thelastknight and Razor1911
http://fileforums.com/showpost.php?p...&postcount=118

Last edited by sentinelks; 08-11-2013 at 02:49.
Reply With Quote
The Following 2 Users Say Thank You to sentinelks For This Useful Post:
aj12345 (27-11-2013), Prince Soft (05-11-2016)
  #27  
Old 06-11-2013, 07:59
triviet4 triviet4 is offline
Registered User
 
Join Date: Mar 2009
Location: Vietnamese
Posts: 4
Thanks: 2
Thanked 5 Times in 4 Posts
triviet4 is on a distinguished road
i'm question
i'm DiskSpanning

DiskSpanning=yes
DiskSliceSize=1566000000
SlicesPerDisk=3

DVD1: Setup-1a, 1b, 1c
DVD2: Setup-2a, 2b, 2c

But when setup DVD1, error... Please insert disk 2... (not found File Setup-2c)
How fix this error?

Last edited by triviet4; 06-11-2013 at 08:23.
Reply With Quote
The Following User Says Thank You to triviet4 For This Useful Post:
aj12345 (27-11-2013)
  #28  
Old 06-11-2013, 08:31
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 triviet4 View Post
But when setup DVD1, error... Please insert disk 2... (not found File Setup-2c)
How fix this error?
dude add you file code under the slides code..

[files]
Source: Include\*.*; Flags: dontcopy;
///Dont put YourCode here//
#define i 0
#ifexist "Slides\1.jpg"
#sub AddFile

Source: Slides\{#i}.jpg; DestDir: {tmp}; Flags: dontcopy;
#endsub
#for {i = 1; FileExists(StringChange("Slides\FileName.jpg", "FileName", Str(i))) != 0; i++} AddFile
#endif

///Put It Here//


Quote:
Originally Posted by varma1993 View Post
y_thelastknight Accepted for the password of Video & Slides

Please Post The Password
Wait, script will be uploaded.

Last edited by y_thelastknight; 06-11-2013 at 08:34.
Reply With Quote
The Following 3 Users Say Thank You to y_thelastknight For This Useful Post:
aj12345 (27-11-2013), triviet4 (06-11-2013), varma1993 (06-11-2013)
  #29  
Old 07-11-2013, 04:09
varma1993's Avatar
varma1993 varma1993 is offline
Registered User
 
Join Date: Mar 2012
Location: Hyderabad
Posts: 29
Thanks: 23
Thanked 8 Times in 6 Posts
varma1993 is on a distinguished road
Send a message via AIM to varma1993 Send a message via Yahoo to varma1993
Smile

Quote:
Originally Posted by y_thelastknight View Post
LoL, Permission granted.
Also PM me the password.
Thx For The Video-Slides Script

And If Possible please Add the Video&Slides button like shown in the picture



Thx For This Script
Reply With Quote
The Following User Says Thank You to varma1993 For This Useful Post:
Prince Soft (05-11-2016)
  #30  
Old 07-11-2013, 04:16
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
Quote:
Originally Posted by varma1993 View Post
Thx For The Video-Slides Script

And If Possible please Add the Video&Slides button like shown in the picture



Thx For This Script


anything is possible .. soon
Reply With Quote
The Following User Says Thank You to sentinelks For This Useful Post:
varma1993 (07-11-2013)
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
Blackbox Inno Setup Script Kurutucu Conversion Tutorials 1190 18-08-2019 22:43
INNO TUTORIAL - Using Unicode and ANSI Versions of INNO Setup REV0 Conversion Tutorials 51 26-03-2015 06:57
NASCAR The Game 2013 (inno setup script) sentinelks PC Games - CD/DVD Conversions 28 08-09-2013 20:30
Copy file with Inno Setup Script emrahcey Software 1 02-07-2010 08:24



All times are GMT -7. The time now is 15:16.


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