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
  #316  
Old 05-06-2018, 07:06
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 Icons.iss
__________________
Haters gonna hate
Reply With Quote
Sponsored Links
  #317  
Old 05-06-2018, 15:48
JacksMafia's Avatar
JacksMafia JacksMafia is offline
Registered User
 
Join Date: Feb 2010
Location: USA
Posts: 127
Thanks: 65
Thanked 19 Times in 15 Posts
JacksMafia is on a distinguished road
Quote:
Originally Posted by KaktoR View Post
Use Icons.iss
ok i wrote those lines
HTML Code:
Name: "{group}\{#Name}"; Filename: "{app}\{code:ExeName2}"; Parameters: "{code:ExeParameter2}"; Check: CreateIcons
Name: "{commondesktop}\{code:AppName2}"; Filename: "{app}\{code:ExeName2}"; Parameters: "{code:ExeParameter2}"; Check: CreateIcons
Name: "{group}\{#Name}"; Filename: "{app}\{code:ExeName3}"; Parameters: "{code:ExeParameter3}"; Check: CreateIcons
Name: "{commondesktop}\{code:AppName3}"; Filename: "{app}\{code:ExeName3}"; Parameters: "{code:ExeParameter3}"; Check: CreateIcons
and now i getting this error
HTML Code:
line4:required function or procedure "exename2" not found
Edit:
you still here mate?!!!

Last edited by JacksMafia; 05-06-2018 at 19:03.
Reply With Quote
  #318  
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
  #319  
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,684
Thanks: 1,106
Thanked 7,331 Times in 2,834 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
  #320  
Old 06-06-2018, 06:26
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
Quote:
Originally Posted by JacksMafia View Post
ok i wrote those lines
HTML Code:
Name: "{group}\{#Name}"; Filename: "{app}\{code:ExeName2}"; Parameters: "{code:ExeParameter2}"; Check: CreateIcons
Name: "{commondesktop}\{code:AppName2}"; Filename: "{app}\{code:ExeName2}"; Parameters: "{code:ExeParameter2}"; Check: CreateIcons
Name: "{group}\{#Name}"; Filename: "{app}\{code:ExeName3}"; Parameters: "{code:ExeParameter3}"; Check: CreateIcons
Name: "{commondesktop}\{code:AppName3}"; Filename: "{app}\{code:ExeName3}"; Parameters: "{code:ExeParameter3}"; Check: CreateIcons
and now i getting this error
HTML Code:
line4:required function or procedure "exename2" not found
Edit:
you still here mate?!!!
Use either
Code:
Name: "{group}\NameForTheIcon"; Filename: "{app}\ExeName.exe"; Parameters: "-Parameter"; Check: CreateIcons
or create a new function for ExeName2 inside Settings.iss. You should also change the GetIniString to Exe2 or something else and place Exe2= inside Settings.ini in [Settings] tab.
__________________
Haters gonna hate
Reply With Quote
  #321  
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
  #322  
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,684
Thanks: 1,106
Thanked 7,331 Times in 2,834 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
  #323  
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)
  #324  
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
  #325  
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
  #326  
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,684
Thanks: 1,106
Thanked 7,331 Times in 2,834 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)
  #327  
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
  #328  
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,684
Thanks: 1,106
Thanked 7,331 Times in 2,834 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
  #329  
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
  #330  
Old 04-07-2018, 06:39
Stor31 Stor31 is offline
Registered User
 
Join Date: Aug 2013
Location: Wahranne
Posts: 323
Thanks: 1,025
Thanked 86 Times in 68 Posts
Stor31 is on a distinguished road
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 06:46.


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