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 05-06-2018, 23:12
Kitsune1982's Avatar
Kitsune1982 Kitsune1982 is offline
Registered User
 
Join Date: Jun 2011
Location: USA
Posts: 110
Thanks: 5
Thanked 86 Times in 47 Posts
Kitsune1982 is on a distinguished road
hey Kaktor great job on the asis script =3
i have a question. is there a way to make the asis setup dialog be bigger than 496x491 resolution? i edited the iss script but every time i run the setup exe it shows the wallpaper at the resolution i put in the script but the actual installer with the 'music off/install/quit' wont change to match my custom resolution is this a hardcoded limitation of the script or can i make the setup dialog window bigger? thanks!

-Kitsune
Reply With Quote
Sponsored Links
  #2  
Old 06-06-2018, 07:11
Kitsune1982's Avatar
Kitsune1982 Kitsune1982 is offline
Registered User
 
Join Date: Jun 2011
Location: USA
Posts: 110
Thanks: 5
Thanked 86 Times in 47 Posts
Kitsune1982 is on a distinguished road
kaktor, here is the issue i am having. take a look at the attached pic and my script.iss and tell me what i need to do to get it to the resolution i want. i want the installer to be 720x455 though preferably 800x600 or higher resolution. how do i do this?
Attached Images
File Type: png Clipboard01.png (254.8 KB, 219 views)
Reply With Quote
  #3  
Old 06-06-2018, 06:24
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,689
Thanks: 1,106
Thanked 7,336 Times in 2,838 Posts
KaktoR is on a distinguished road
You can change everything. The thing is, buttons/labels/etc are placed to match with the wizardform size (i have not placed it by variables). You can edit the positions of all of them tough.
__________________
Haters gonna hate
Reply With Quote
  #4  
Old 06-06-2018, 08:22
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,689
Thanks: 1,106
Thanked 7,336 Times in 2,838 Posts
KaktoR is on a distinguished road
Change resolution for image in

Code:
WizardForm.WizardBitmapImage.Width := 497;
  WizardForm.WizardBitmapImage.Height := 314;

WizardForm.WizardBitmapImage2.Width := 497;
  WizardForm.WizardBitmapImage2.Height := 314;
and buttons for example
Code:
MusicButton := TNewButton.Create(WizardForm);
      with MusicButton do begin
        Parent  := WizardForm;
        Left    := ScaleX(169);
        Top     := ScaleY(327);
        Width   := ScaleX(75);
        Height  := ScaleY(23);
        Caption := ExpandConstant('{cm:MusicButtonCaptionSoundOff}');
        OnClick := @MusicButtonClick;
      end;
__________________
Haters gonna hate
Reply With Quote
  #5  
Old 02-07-2018, 05:50
Schabik Schabik is offline
Registered User
 
Join Date: Dec 2008
Location: Somewhere in Poland
Posts: 152
Thanks: 17
Thanked 35 Times in 32 Posts
Schabik is on a distinguished road
Quote:
Originally Posted by KaktoR View Post
Change resolution for image in

Code:
WizardForm.WizardBitmapImage.Width := 497;
  WizardForm.WizardBitmapImage.Height := 314;

WizardForm.WizardBitmapImage2.Width := 497;
  WizardForm.WizardBitmapImage2.Height := 314;
and buttons for example
Code:
MusicButton := TNewButton.Create(WizardForm);
      with MusicButton do begin
        Parent  := WizardForm;
        Left    := ScaleX(169);
        Top     := ScaleY(327);
        Width   := ScaleX(75);
        Height  := ScaleY(23);
        Caption := ExpandConstant('{cm:MusicButtonCaptionSoundOff}');
        OnClick := @MusicButtonClick;
      end;

Nope, Website button is moving but when I tried to resize the image it's not resizing. My image has 750x500 but when I Tried to resize This happens:2018-07-02_14h45_36.png


Original image looks like this:
TS3collection1.jpg
Reply With Quote
  #6  
Old 02-09-2018, 08:22
ZAZA4EVER ZAZA4EVER is offline
Registered User
 
Join Date: Oct 2016
Location: egypt
Posts: 179
Thanks: 615
Thanked 200 Times in 72 Posts
ZAZA4EVER is on a distinguished road
Quote:
Originally Posted by Schabik View Post
Nope, Website button is moving but when I tried to resize the image it's not resizing. My image has 750x500 but when I Tried to resize This happens:Attachment 22212


Original image looks like this:
Attachment 22213
For this problem i reach for solution for make setup suitable for any resolutions ... But we want cjstyle file transparent or crystal for setup.if anyone have it please upload it ... My try in picture ...
Attached Images
File Type: jpg Untitled.jpg (265.4 KB, 154 views)
Reply With Quote
  #7  
Old 25-06-2018, 22:05
TheGeekyGamer's Avatar
TheGeekyGamer TheGeekyGamer is offline
Registered User
 
Join Date: Jun 2018
Location: File Forums
Posts: 18
Thanks: 38
Thanked 5 Times in 5 Posts
TheGeekyGamer is on a distinguished road
Thank you... i was looking for a simple and clean installer creator.
Reply With Quote
The Following User Says Thank You to TheGeekyGamer For This Useful Post:
Jiva newstone (08-07-2018)
  #8  
Old 08-07-2018, 00:52
Jiva newstone's Avatar
Jiva newstone Jiva newstone is offline
Registered User
 
Join Date: Nov 2016
Location: India
Posts: 190
Thanks: 227
Thanked 412 Times in 96 Posts
Jiva newstone is on a distinguished road
Quote:
Originally Posted by TheGeekyGamer View Post
Thank you... i was looking for a simple and clean installer creator.
Any ideas on your simple and clean installer,
Attached Images
File Type: png Clean.PNG (1.60 MB, 294 views)
Reply With Quote
  #9  
Old 11-07-2018, 23:20
Schabik Schabik is offline
Registered User
 
Join Date: Dec 2008
Location: Somewhere in Poland
Posts: 152
Thanks: 17
Thanked 35 Times in 32 Posts
Schabik is on a distinguished road
Ok, I have another problem.


When trying to install the game the installer freezes on 57% the cls-srep process closes and installation won't continue.

Last edited by Schabik; 12-07-2018 at 01:16.
Reply With Quote
  #10  
Old 02-07-2018, 09:00
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
did you change BOTH sets of lines where KaktoR posted them ?
https://www.fileforums.com/showpost....&postcount=322
Reply With Quote
  #11  
Old 02-07-2018, 22:35
Schabik Schabik is offline
Registered User
 
Join Date: Dec 2008
Location: Somewhere in Poland
Posts: 152
Thanks: 17
Thanked 35 Times in 32 Posts
Schabik is on a distinguished road
Quote:
Originally Posted by pakrat2k2 View Post
did you change BOTH sets of lines where KaktoR posted them ?
https://www.fileforums.com/showpost....&postcount=322

I've changed both variables.
As KaktoR said, something really Isn't right.


Edit:


OK, KaktoR please tell me the installer has 2 or 3 layers if I think correctly. The layer that is responsible for the image size is not resizing correctly and I think that it has a constant size.

Last edited by Schabik; 03-07-2018 at 05:14.
Reply With Quote
  #12  
Old 02-07-2018, 12:04
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,689
Thanks: 1,106
Thanked 7,336 Times in 2,838 Posts
KaktoR is on a distinguished road
Nah he is right. Something is wrong.
__________________
Haters gonna hate
Reply With Quote
The Following User Says Thank You to KaktoR For This Useful Post:
Schabik (03-07-2018)
  #13  
Old 03-07-2018, 05:52
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,689
Thanks: 1,106
Thanked 7,336 Times in 2,838 Posts
KaktoR is on a distinguished road
Hm yeah

I think the problem is WelcomeLabel1 + WelcomeLabel2 transparency

I have not worked on it for a long time.

Anyway, script was initialy not made to change all that stuff.
Attached Images
File Type: png Unbenannt.png (529.9 KB, 147 views)
__________________
Haters gonna hate

Last edited by KaktoR; 03-07-2018 at 05:54.
Reply With Quote
  #14  
Old 04-07-2018, 00:57
Schabik Schabik is offline
Registered User
 
Join Date: Dec 2008
Location: Somewhere in Poland
Posts: 152
Thanks: 17
Thanked 35 Times in 32 Posts
Schabik is on a distinguished road
Quote:
Originally Posted by KaktoR View Post
Hm yeah

I think the problem is WelcomeLabel1 + WelcomeLabel2 transparency

I have not worked on it for a long time.

Anyway, script was initialy not made to change all that stuff.

KaktoR Can You please work on that?
I'm not a programmer, so I can't solve this problem.
I'm trying to solve the problem but no results.


I've occured another problem, The wizard does not always run correctly.
the steps are: running setup, splashscreen appears, after thar nothing happens.

Last edited by Schabik; 04-07-2018 at 01:06.
Reply With Quote
  #15  
Old 08-07-2018, 00:47
Jiva newstone's Avatar
Jiva newstone Jiva newstone is offline
Registered User
 
Join Date: Nov 2016
Location: India
Posts: 190
Thanks: 227
Thanked 412 Times in 96 Posts
Jiva newstone is on a distinguished road
Quote:
Originally Posted by Schabik View Post
KaktoR Can You please work on that?
I'm not a programmer, so I can't solve this problem.
I'm trying to solve the problem but no results.


I've occured another problem, The wizard does not always run correctly.
the steps are: running setup, splashscreen appears, after thar nothing happens.
Yes, u can add transparency- go to wizardform and add this

WizardForm.WelcomeLabel1.Transparent:=true;
WizardForm.WelcomeLabel2.Transparent:=true;

or use this

http://krinkels.org/resources/transparentstatic.180/
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 15:52.


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