|
#31
|
||||
|
||||
|
why ?
its already in its default location, just that OP didnt know what it was properly called, and wrote it wrong in the script. |
| The Following User Says Thank You to pakrat2k2 For This Useful Post: | ||
Kurutucu (18-04-2013) | ||
| Sponsored Links |
|
#32
|
|||
|
|||
|
what if u just wanna use the normal compression internal compression from inno?
|
|
#33
|
||||
|
||||
|
@mikey26
hopeless and hopeful at the same time. He must upgrade script so that feature can work. |
|
#34
|
||||
|
||||
|
Can you give me script for "compact view"..
|
|
#35
|
||||
|
||||
|
@Pein46
example: [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; but you'll have to resize progressbar and lables
|
| The Following User Says Thank You to Razor12911 For This Useful Post: | ||
Pein46 (22-04-2013) | ||
|
#36
|
||||
|
||||
|
Last edited by Pein46; 23-04-2013 at 00:54. |
|
#37
|
||||
|
||||
|
I just showed you what to do.
Post #37 |
|
#38
|
|||
|
|||
|
excusme sir , i'am newbie want to ask, i have error on final extract show me notice like this " It Is Not Found Any File Specified For IsarcExtract "
i dont change compres method just like this Compression=none and i have file "setup-1a.bin" and use default method : Code:
if not ISArcExtract ( 0, 100, ExpandConstant('{src}\data.arc'), ExpandConstant('{app}\'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}\'), notPCFonFLY{PCFonFLY}) then break;
thx *sorry my bad english
|
|
#39
|
||||
|
||||
|
If your arc data = "setup-1a.bin"
Code:
if not ISArcExtract ( 0, 100, ExpandConstant('{src}\setup-1a.bin'), ExpandConstant('{app}\'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}\'), notPCFonFLY{PCFonFLY}) then break;
|
|
#40
|
|||
|
|||
|
@pein46
thx for help, i have "setup-1a.bin - setup-1c.bin" and "setup-2a.bin - setup-2c.bin" so,must add new code for setup-b,c too ? have error like this when i change what you said before..
|
|
#41
|
||||
|
||||
|
hmm, those files must be created using freearc
|
|
#42
|
||||
|
||||
|
@Razor12911
Quote:
can you?.. please.. This is my script.. Last edited by Pein46; 23-04-2013 at 02:09. |
|
#43
|
||||
|
||||
|
script with all files?
|
|
#44
|
|||
|
|||
|
@ Razor12911
how to keep the file can be successfully extracted, whether the script should replace ? Which part should I replace? |
|
#45
|
||||
|
||||
|
don't understand what you are asking but if you are asking how to set up archives, read base post, if asking how to remove setup-1a.bin then disable diskspanning in [Setup] but if asking how to keep file after extracting then
use this line, changes are bolded if not ISArcExtract ( 0, 100, ExpandConstant('{src}\setup-1a.bin'), ExpandConstant('{app}\'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}\'), notPCFonFLY) then break; not to keep if not ISArcExtract ( 0, 100, ExpandConstant('{src}\setup-1a.bin'), ExpandConstant('{app}\'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}\'), PCFonFLY) then break; |
| The Following User Says Thank You to Razor12911 For This Useful Post: | ||
felix1788 (23-04-2013) | ||
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
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 |