|
|
|
#1
|
||||
|
||||
|
BlackBox Inno Setup Script:
Creator: RaZoR12911 Credits: Bulat Ziganshin Victor Dobrov SotM CTACKo Shegorat Instructions: Graphics: You can change all graphics which are in Graphics Folder inside attachment. Installer Only Support: Latest Freearc 0.67 Alpha Archives with/without precomp and srep compression. Uses Inno Setup ANSI or Inno Setup Enhanced Edition ANSI or Inno Setup Unicode or Inno Setup Enhanced Edition Unicode Check up inno setup documentation for other functions, like shortcuts, tasks, compoents but for now you need to know this. New Directives [ArcFiles] how to set it up for freearc archive extracting process: Section directives: Source - Name of the archive DestDir - Destination directory for unpacking archives Components - Names of components that need for unpacking archive Tasks - Names of tasks that need for unpacking archive Disk - Number of the disk that contains the archive Password - Acrhive password, if archive is encrypted FilesList - Path to textfile with filenames which need to unpack from archives (!not tested) Example: [ArcFiles] Source: {src}\Data1.cab; DestDir: {app}; Disk: 1; Source: {src}\Data2.cab; DestDir: {app}; Disk: 2; Source: {src}\Data3.cab; DestDir: {app}; Disk: 2; Password: 1234 Preview and Download Last edited by Razor12911; 27-04-2013 at 03:56. |
| The Following 5 Users Say Thank You to Razor12911 For This Useful Post: | ||
-XCX- (11-12-2016), amgad_800 (05-05-2013), danswano (27-04-2013), Sony091090 (07-10-2016), y_thelastknight (28-04-2013) | ||
| Sponsored Links |
|
#2
|
||||
|
||||
|
you can use booleans and msgboxes.
|
|
#3
|
|||
|
|||
|
How to display the "insert next disk message upon next missing data.cab from disc?
|
|
#4
|
|||
|
|||
|
how uniform the installer icon. When I change the commands in CI's project Inno yener90 it retains the old icon. Is there any way to change this icon in my icon!
|
|
#5
|
|||
|
|||
|
In case no body saw my reply:
How do i dynamically make the installer asks for the next cab if it was missing on the disc without specifying which .cab is one the next disc? |
|
#6
|
||||
|
||||
|
Hello.
How can i change the value [mb] to gb? Code:
DiskSpaceMBLabel=At least [mb] MB of free disk space is required. |
|
#7
|
||||
|
||||
|
it's easy to do that just by using pos, check IS documentation
|
|
#8
|
||||
|
||||
|
Quote:
Can you give me an example? Last edited by Andre Jesus; 22-04-2013 at 15:34. |
|
#9
|
||||
|
||||
|
Quote:
sorry didn't also mention length function MBToGB(MB : Integer): String; begin if Length(IntToStr(MB)) > 3 then Result := Copy(IntToStr(MB), 0, Length(IntToStr(MB))-3) + '.' + Copy(IntToStr(MB), Length(IntToStr(MB))-2, 1) + ' GB' else Result := IntToStr(MB) + ' MB' end; how to use Legend: i = integer, a number to convert from MB to GB MBToGB(i) |
|
#10
|
|||
|
|||
|
I would like to know that as well, but if the size is under 999 MB i think it should show up as MB not 0.x GB
|
|
#11
|
||||
|
||||
|
Actually if size is under 1024 MB (1024 MB = 1GB)
__________________
always above all, keep in mind that some day you will die. Bushido. |
|
#12
|
|||
|
|||
|
CIU why when I use it to not show up the setup menu interface. Although I was rather png and bmp. You can help me!
|
|
#13
|
||||
|
||||
|
I can not understand why the compression is giving this error:
![]() Where did I go wrong?
|
|
#14
|
||||
|
||||
|
@danswano
for example You can use this approach. if not FileExist(ExpandConstant('{src}\DVD2\data7.bin')) then begin repeat MsgBox('Insert Disk: 2', mbInformation, MB_OK); until FileExist(ExpandConstant('{src}\DVD2\data7.bin')) = True end; |
| The Following User Says Thank You to Razor12911 For This Useful Post: | ||
danswano (22-04-2013) | ||
![]() |
|
|
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 |