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
  #1  
Old 22-07-2013, 09:38
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,751
Thanks: 2,181
Thanked 11,211 Times in 2,309 Posts
Razor12911 is on a distinguished road
Quote:
Originally Posted by buttignol View Post
Friends need a help how to make transparent TasksList
as of the SelectTasksLabel
I'm using this script without success

Code:
var
  SelectTasksLabel,TasksList: TLabel;
procedure InitializeWizard();
begin
   WizardForm.SelectTasksLabel.Hide;
   WizardForm.TasksList.Hide;

   SelectTasksLabel:=TLabel.Create(WizardForm);
   SelectTasksLabel.Left:=60;
   SelectTasksLabel.Top:=15;
   SelectTasksLabel.Width:=470;
   SelectTasksLabel.Height:=35;
   SelectTasksLabel.AutoSize:=False;
   SelectTasksLabel.WordWrap:=True;
   SelectTasksLabel.Transparent:=True;
   SelectTasksLabel.Font.Size := 10;
   SelectTasksLabel.Caption:=WizardForm.SelectTasksLabel.Caption;
   SelectTasksLabel.Parent:=WizardForm.SelectTasksPage;

   TasksList:=TLabel.Create(WizardForm);
   TasksList.Left:=60;
   TasksList.Top:=70;
   TasksList.Width:=400;
   TasksList.Height:=252;
   TasksList.AutoSize:=False;
   TasksList.Font.Size := 10;
   TasksList.Parent:= WizardForm.SelectTasksPage;
end;
TasksList.Transparent:=True;

but actually, it's not TasksList which makes the Grey Field.

It's a form, just find out what it is.

Last edited by Razor12911; 22-07-2013 at 09:42.
Reply With Quote
Sponsored Links
  #2  
Old 22-07-2013, 09:53
buttignol's Avatar
buttignol buttignol is offline
Registered User
 
Join Date: Sep 2012
Location: Brasil
Posts: 126
Thanks: 102
Thanked 16 Times in 13 Posts
buttignol is on a distinguished road
Thank Razor12911 just is not showing anything that appears only
SelectTasksLabel
Attached Images
File Type: jpg Exemplo 2.jpg (73.0 KB, 139 views)
Reply With Quote
  #3  
Old 22-07-2013, 10:16
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,751
Thanks: 2,181
Thanked 11,211 Times in 2,309 Posts
Razor12911 is on a distinguished road
hmm, I see. Why don't you come up with a panel which will be the base for the text, or use botva2 functions and procedures.
Reply With Quote
  #4  
Old 22-07-2013, 10:47
buttignol's Avatar
buttignol buttignol is offline
Registered User
 
Join Date: Sep 2012
Location: Brasil
Posts: 126
Thanks: 102
Thanked 16 Times in 13 Posts
buttignol is on a distinguished road
Quote:
Originally Posted by Razor12911 View Post
hmm, I see. Why don't you come up with a panel which will be the base for the text, or use botva2 functions and procedures.
You have an example script of how to use botva2
Reply With Quote
  #5  
Old 22-07-2013, 12:15
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,751
Thanks: 2,181
Thanked 11,211 Times in 2,309 Posts
Razor12911 is on a distinguished road
look around in this thread for botva2 example script. I think I posted it or instructed how it's used.

Either way, why don't you remove the image as background, you should place it on welcome page then use the wide small wizrd image on top of the wizardform, it's just a suggestion. Else you can place a text background specially designed for text so that it can be clearly seen whilst using the full image.

Last edited by Razor12911; 22-07-2013 at 12:19.
Reply With Quote
  #6  
Old 22-07-2013, 17:59
buttignol's Avatar
buttignol buttignol is offline
Registered User
 
Join Date: Sep 2012
Location: Brasil
Posts: 126
Thanks: 102
Thanked 16 Times in 13 Posts
buttignol is on a distinguished road
Quote:
Originally Posted by Razor12911 View Post
look around in this thread for botva2 example script. I think I posted it or instructed how it's used.

Either way, why don't you remove the image as background, you should place it on welcome page then use the wide small wizrd image on top of the wizardform, it's just a suggestion. Else you can place a text background specially designed for text so that it can be clearly seen whilst using the full image.
Thank Razor12911'll try with the botva2 and I want to put a different image for each page
Reply With Quote
  #7  
Old 23-07-2013, 02:27
keremaster keremaster is offline
Registered User
 
Join Date: Oct 2012
Location: Turkey
Posts: 1
Thanks: 1
Thanked 0 Times in 0 Posts
keremaster is on a distinguished road
How I can add close antivirus warning on inno setup?
Reply With Quote
  #8  
Old 23-07-2013, 05:56
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,751
Thanks: 2,181
Thanked 11,211 Times in 2,309 Posts
Razor12911 is on a distinguished road
add msgbox function under initializewizard procedure.

Msgbox example is found in inno setup documentation.
Reply With Quote
  #9  
Old 28-07-2013, 07:12
Riddle_R Riddle_R is offline
Registered User
 
Join Date: Jun 2013
Location: india
Posts: 13
Thanks: 7
Thanked 0 Times in 0 Posts
Riddle_R is on a distinguished road
I created an arc with no compression --> data.arc
I then precomped it with " -intense -v -c-"
and the file i got was -----> data.pcf
I then compressed it with free arc again "-mx -ld1600m" and got it as
data.arc......

i wanted to extract use this file in my setup which i created with Yenner90's Custom Installer...

i used this

[ExtractSettings]
FreeArcFile1={src}\Data.cab;DestDir:{app};Disk:1;P recSrep:0

but it didn't work...
so processed the pcf file with SREP 64 and got ---> data.pcf.srep
compressed it with freearc again to make it ---> data.arc

and then used the same extract settings....but i still got the same error...
can anyone plzz help me in gettin outta this ????

Reply With Quote
  #10  
Old 28-07-2013, 07:24
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,751
Thanks: 2,181
Thanked 11,211 Times in 2,309 Posts
Razor12911 is on a distinguished road
procedure of compressing is

data.arc - freearc
data.pcf - precomp
data.srep - srep/srep64
data.cab - freearc(.cab can be changed with any extension)
PrecSrep:1; (Must be enabled if ARC-PCF-SREP-ARC method is used)
Reply With Quote
  #11  
Old 28-07-2013, 07:57
Riddle_R Riddle_R is offline
Registered User
 
Join Date: Jun 2013
Location: india
Posts: 13
Thanks: 7
Thanked 0 Times in 0 Posts
Riddle_R is on a distinguished road
I used this batch to process my files...
i change the value from 0 to 1 ..but i stll get the same error...

@echo off
precomp -intense -v -c- data.arc
del data.arc
srep64.exe -m3f data.pcf
ren data.pcf.srep data.srep
del data.pcf
arc.exe a -mx -ld1600m data.srep data.cab
exit
Reply With Quote
  #12  
Old 28-07-2013, 08:51
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
in setup.ini make sure that you have PrecompVer=Inside
Reply With Quote
  #13  
Old 29-07-2013, 04:54
Riddle_R Riddle_R is offline
Registered User
 
Join Date: Jun 2013
Location: india
Posts: 13
Thanks: 7
Thanked 0 Times in 0 Posts
Riddle_R is on a distinguished road
@packarat...
can u please elaborate it a little ??? i didn't get what u wanted to say...
I am using precomp 0.4.2 alpha...

I have attatched my setup.ini...
if u can please find a solution for thiss...
thnxx
Reply With Quote
  #14  
Old 29-07-2013, 05:03
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
example only use your setup.ini & add PrecompVer=Inside at bottom of [Installoptions] section
Code:
[InstallOptions]
ApplicationName=Two Worlds 2 Epic Edition
GameSize=5229
MyExecutableName=TwoWorlds2_DX10.exe
MyExecutablePath=Two Worlds II
MyExecutableIconName=Two Worlds II-DX10
MyExecutableName2=TwoWorlds2.exe
MyExecutablePath2=Two Worlds II
MyExecutableIconName2=Two Worlds II-DX9
MyExecutableName3=Castle Defense
MyExecutablePath3=Castle Defense\TW2 Castle Defense
MyExecutableIconName3=TW2CD.exe
Editor=pakrat/sentinelks
Lang=en
PrecompVer=Inside
Reply With Quote
  #15  
Old 29-07-2013, 06:31
Riddle_R Riddle_R is offline
Registered User
 
Join Date: Jun 2013
Location: india
Posts: 13
Thanks: 7
Thanked 0 Times in 0 Posts
Riddle_R is on a distinguished road
I made it this way now..

[InstallOptions]
ApplicationName=Hitman - Blood Money
Publisher=IO interactive
GameSize=9950
MyExecutableName=hitmanbooldmoney.exe
Editor=Riddle_R
Lang=en,
[InstallSettings]
GDFBinary=GDF.dll
[ExtractSettings]
FreeArcFile1={src}\Data.arc;DestDir:{app};Disk:1;P recSrep:1
PrecompVer=Inside


Still get the same error
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
Frequently Asked Questions Joe Forster/STA PC Games - Frequently Asked Questions 0 29-11-2005 09:48



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


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