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
  #811  
Old 07-05-2020, 04:03
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,684
Thanks: 1,106
Thanked 7,331 Times in 2,834 Posts
KaktoR is on a distinguished road
Wrong positioning

Send me your Settings.ini please
__________________
Haters gonna hate
Reply With Quote
The Following User Says Thank You to KaktoR For This Useful Post:
shakhnaften (07-05-2020)
Sponsored Links
  #812  
Old 07-05-2020, 05:24
shakhnaften shakhnaften is offline
Registered User
 
Join Date: Apr 2020
Location: Earth
Posts: 6
Thanks: 6
Thanked 0 Times in 0 Posts
shakhnaften is on a distinguished road
here you go thank you
Attached Files
File Type: txt Settings.txt (5.0 KB, 9 views)
Reply With Quote
  #813  
Old 07-05-2020, 06:41
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,684
Thanks: 1,106
Thanked 7,331 Times in 2,834 Posts
KaktoR is on a distinguished road
Well this only happens with vcl skin.

I will investigate this soon.
__________________
Haters gonna hate
Reply With Quote
The Following User Says Thank You to KaktoR For This Useful Post:
shakhnaften (07-05-2020)
  #814  
Old 07-05-2020, 07:35
shakhnaften shakhnaften is offline
Registered User
 
Join Date: Apr 2020
Location: Earth
Posts: 6
Thanks: 6
Thanked 0 Times in 0 Posts
shakhnaften is on a distinguished road
thank you looking forward to this and internal compression
Reply With Quote
  #815  
Old 07-05-2020, 12:24
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,073
Thanks: 1,814
Thanked 2,302 Times in 786 Posts
Cesar82 is on a distinguished road
Quote:
Originally Posted by KaktoR View Post
Well this only happens with vcl skin.

I will investigate this soon.
Find this part in ASIS code and add line in red color.
Code:
procedure CurPageChanged(CurPageID: Integer);
var
  I: Integer;
  CompFile: String;
  ReloadComponents: Boolean;
begin

#if CompactMode == "0"  /* Full Installer Mode */

  if CurPageID = wpWelcome then
  begin
    #if UseInstallBackground == "1"
      BackgroundButton.Hide;
    #endif
    AboutButton.Show;
    PercentLabel.Hide;
    ElapsedLabel.Hide;
    RemainingLabel.Hide;
    PauseButton.Hide;
    WizardForm.DirEdit.Hide;
    WizardForm.DirBrowseButton.Hide;
    WizardForm.GroupEdit.Hide;
    WizardForm.GroupBrowseButton.Hide;
    WizardForm.PageNameLabel.Hide;
    WizardForm.PageDescriptionLabel.Hide;
    WizardForm.ProgressGauge.Hide;
    WizardForm.UserInfoNameLabel.Hide;
    WizardForm.UserInfoNameEdit.Hide;
    WizardForm.CancelButton.Top := WizardForm.NextButton.Top;
    ReloadComponents := False;
    #if UseComponents == "1"
    if ComponentsPageAvai then
    begin
    //...
Reply With Quote
The Following User Says Thank You to Cesar82 For This Useful Post:
Titeuf (07-05-2020)
  #816  
Old 07-05-2020, 13:05
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,684
Thanks: 1,106
Thanked 7,331 Times in 2,834 Posts
KaktoR is on a distinguished road
@Cesar: I already did this. But I don't know why this happens with vcl skin... Any ideas? Just to inform myself
__________________
Haters gonna hate
Reply With Quote
The Following User Says Thank You to KaktoR For This Useful Post:
Titeuf (07-05-2020)
  #817  
Old 07-05-2020, 15:24
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,073
Thanks: 1,814
Thanked 2,302 Times in 786 Posts
Cesar82 is on a distinguished road
@KaktoR, I found out.
The error happens only using version 6 of inno setup.
In reality, the VCLStylesInno.dll library relocates the NEXT and BACK buttons (in -3 pixels), but CANCEL is not repositioned.
If using inno setup 5 + VCLStyles all buttons are repositioned to (-3) pixels.
I attached a test for you to test if you want (Define or not the 2 lines and compare using inno setup 5 and 6).

There was an error in the ASIS script when compiling using Inno Setup 5.
I'm not sure if the script I had was the last one.
I fixed this error and also used a more correct way to correct the CANCEL buttom problem (Only fix if using Inno Setup 6).
The corrected ASIS script (Version I had) is attached.
Attached Files
File Type: rar VCLStyle_ERROR_with_Inno_Setup_6.rar (900.3 KB, 18 views)
File Type: rar ASIS - Script [2020.05.07].rar (24.9 KB, 23 views)
Reply With Quote
The Following User Says Thank You to Cesar82 For This Useful Post:
shakhnaften (08-05-2020)
  #818  
Old 07-05-2020, 22:26
Suryam Suryam is offline
Registered User
 
Join Date: Mar 2020
Location: India
Posts: 19
Thanks: 6
Thanked 20 Times in 5 Posts
Suryam is on a distinguished road
Hello Kaktor please name the compressor which i can use in this inno installer
Reply With Quote
  #819  
Old 08-05-2020, 01:28
Suryam Suryam is offline
Registered User
 
Join Date: Mar 2020
Location: India
Posts: 19
Thanks: 6
Thanked 20 Times in 5 Posts
Suryam is on a distinguished road
Hello Thanks For The ASIS Please answer me how we can create a crc file of a game please help me to check wether the files has installed correctly
Reply With Quote
  #820  
Old 08-05-2020, 01:35
Suryam Suryam is offline
Registered User
 
Join Date: Mar 2020
Location: India
Posts: 19
Thanks: 6
Thanked 20 Times in 5 Posts
Suryam is on a distinguished road
How to Create crc file for checking The file

Hello Firstly Thanks For The Installer
I am seeing that Cr Check is available But i am completely noob in coding or compressing so please give a very simple tutorial to create crc file for checksum
Reply With Quote
  #821  
Old 08-05-2020, 03:02
shakhnaften shakhnaften is offline
Registered User
 
Join Date: Apr 2020
Location: Earth
Posts: 6
Thanks: 6
Thanked 0 Times in 0 Posts
shakhnaften is on a distinguished road
hello I have issue with info before page
is there a way to make it accept rtf format?
i changed txt to rtf in script and made a rtf file but it doesnt accept its formats or fonts or sizes
also is there a way to make it read only in setup window cause i can write in it in setup window
thank you
Reply With Quote
  #822  
Old 08-05-2020, 03:58
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,684
Thanks: 1,106
Thanked 7,331 Times in 2,834 Posts
KaktoR is on a distinguished road
Use Compressor.ini to find out.

Create crc file with HashCheck, QuickSFV, ...

Yes it is possible to use rtf.
Change inside script
Code:
InfoBeforeFile=Setup\InfoBefore.txt
to
InfoBeforeFile=Setup\InfoBefore.rtf
__________________
Haters gonna hate
Reply With Quote
  #823  
Old 08-05-2020, 04:01
shakhnaften shakhnaften is offline
Registered User
 
Join Date: Apr 2020
Location: Earth
Posts: 6
Thanks: 6
Thanked 0 Times in 0 Posts
shakhnaften is on a distinguished road
yes thank you I did that but the formats in rtf file doesn't apply like the size, font, centering text and stuff is there a way to make those work?

and is there a way to make the text box inside the setup read only because i can change the text inside setup textbox
Reply With Quote
  #824  
Old 08-05-2020, 04:28
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,684
Thanks: 1,106
Thanked 7,331 Times in 2,834 Posts
KaktoR is on a distinguished road
Well I have to change some things for the rtf files fontsize, fontcolor etc... (I have to change from TNewMemo to TRichEditViewer). I will make this later.

However, here is a new script which allows you to load rtf files for InfoBefore and make it read only.
Attached Files
File Type: 7z Script.7z (172.1 KB, 11 views)
__________________
Haters gonna hate
Reply With Quote
The Following User Says Thank You to KaktoR For This Useful Post:
shakhnaften (08-05-2020)
  #825  
Old 08-05-2020, 07:49
Suryam Suryam is offline
Registered User
 
Join Date: Mar 2020
Location: India
Posts: 19
Thanks: 6
Thanked 20 Times in 5 Posts
Suryam is on a distinguished road
CRC Checksum Problem

I have created the checksum files and also write it on the settings.ini when it starts verification It says File Not Found Why I have created repack of Call Of Duty Please Help
Now When i am not using compact mode whenever the installation completes the setup crashes but i am seeing that it is installed Fully
PLAESE HELP KAKTOR
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
[Help] need Advanced Installer script with Razor1911's UltraArc module rez3vil Conversion Tutorials 3 15-04-2024 02:24
Portable Installer Inno Setup Script y_thelastknight Conversion Tutorials 59 23-10-2020 00:02
INDEX - Conversion Tutorial Index Razor12911 Conversion Tutorials 5 11-06-2020 02:05
Simple Arc Installer 78372 Conversion Tutorials 1 15-06-2017 15:37
MSC+Srep+lzma Simple Script Example gozarck Conversion Tutorials 10 07-09-2015 16:31



All times are GMT -7. The time now is 02:53.


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