|
#46
|
||||
|
||||
|
@Razor12911
This is my script (with files).. Last edited by Pein46; 23-04-2013 at 03:22. |
| Sponsored Links |
|
#47
|
|||
|
|||
|
@Razor12911
hmm i mean ..why always get error like this ![]() and how to fix it ? thx... |
|
#50
|
|||
|
|||
|
Error in this (Caption:=' Shortcut will be created in following «Start?
|
|
#51
|
||||
|
||||
|
should read Start Menu
|
|
#52
|
|||
|
|||
|
Updated 1.3
-Changed interface. -Fixed text grounds. -Added splash and logo. -You can create images in PSD files folder with *.psd. Last edited by Kurutucu; 09-06-2013 at 12:09. |
|
#53
|
|||
|
|||
|
Data.cab missing. Compress your game files with freearc. For no compression use freearc -m0 method. And don't use archive password.
Last edited by Kurutucu; 24-04-2013 at 08:45. |
|
#55
|
||||
|
||||
|
@Kurutucu
Note 2: I don't think using setup-1.bin or setup-1a.bin is a good example, Inno Setup can delete those files when you compile script because it thinks those files are created by it. |
|
#56
|
|||
|
|||
|
@Razor12911
I know. First compile script. Then create setup-1.bin
|
|
#57
|
|||
|
|||
|
i compress files with this method
-mprecomp+srep+lzma:a1:mfbt4:d200m:fb128:mc1000:lc8 what should i change in script to extract files ? , and how to extract more than 1 file ? Thx
Last edited by elnesr; 24-04-2013 at 19:45. |
|
#58
|
||||
|
||||
|
Quote:
Code:
if not ISArcExtract ( 0, 0, ExpandConstant('{src}\setup-1.bin'), ExpandConstant('{app}'), '', false, '', '', ExpandConstant('{app}'), notPCFonFLY {PCFonFLY}) then break;
Razor' in script section Code:
With GroupLbl do begin
//Transparent:=true;
Parent:=WizardForm;
//Alignment:=taCenter;
Caption:='Setup will create shortcuts in the following Start';
missing (space) Menu';
Caption:='Setup will create shortcuts in the following Start Menu';
|
| The Following 3 Users Say Thank You to pakrat2k2 For This Useful Post: | ||
|
#59
|
||||
|
||||
|
@Pakrat2k2
add arc.ini ![]() if not ISArcExtract ( 0, 0, ExpandConstant('{src}\setup-1.bin'), ExpandConstant('{app}\'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}\'), notPCFonFLY{PCFonFLY}) then break; @Kurutucu How can you have two of #define NeedSize "6666" #define PrecompInside #define SrepInside #define precomp "0.42" #define unrar #define XDelta #define PackZIP these in the same script? you are now confusing inno. One in main.iss and one in ISDone\ISDone.iss and both are different. Last edited by Razor12911; 24-04-2013 at 21:32. |
| The Following User Says Thank You to Razor12911 For This Useful Post: | ||
elnesr (24-04-2013) | ||
|
#60
|
|||
|
|||
|
her.....
Code:
var NewCheckBox: TCheckBox; procedure WizardFormResizer(Sender: TObject); begin if NewCheckBox.Checked = True then begin WizardForm.Width:=NewWizardFormSizeX WizardForm.Height:=NewWizardFormSizeY end else begin WizardForm.Width:=OldWizardFormSizeX WizardForm.Height:=OldWizardFormSizeY end; end; procedure InitializeWizard; begin NewCheckBox:= TCheckBox.Create(WizardForm); with NewCheckBox do begin Parent:= WizardForm.InstallingPage; Left:= SetPositionX; Top:= SetPositionY; Width:= SetSizeX; Height:= SetSizeY; Checked:= False; OnClick:= @WizardFormResizer; Caption := 'Compact View'; end; end; |
![]() |
|
|
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 |
| Copy file with Inno Setup Script | emrahcey | Software | 1 | 02-07-2010 08:24 |