|
#916
|
||||
|
||||
|
If you want to send me your project (by PM) I can help you more easily (send me the complete project including the compressors).
|
| Sponsored Links |
|
#917
|
||||
|
||||
|
Quote:
the original file "records.ini" that comes with ASIS is this: [Record1] Type=Freearc_Original Source={src}\data.arc Output={app}\ Disk=1 and it doesn't work, works only changing that "Type=Freearc_Original" to "Type=FreeArc_Original". Infact the code does this check: if Data[i - 1].Arc[0] = 'FreeArc_Original' then it is "FreeArc" and not "Freearc". |
|
#918
|
||||
|
||||
|
Quote:
|
|
#919
|
||||
|
||||
|
ASIS even has a case sensitive comparison.
In CIU and LIS these options are compared with LowerCase. You can change the ASIS script in 2 places, just by entering LowerCase. Code:
if LowerCase(Data[i - 1].Arc[0]) = LowerCase('FreeArc_Original') then
if LowerCase(Data[i - 1].Arc[0]) = LowerCase('FreeArc_Split') then
|
|
#920
|
|||
|
|||
|
hi, how to remove create uninstaller?
Thank you
|
|
#921
|
||||
|
||||
|
Comment the UninstallCB in procedure CurPageChanged (add // before). Should be enough.
__________________
Haters gonna hate
|
|
#922
|
|||
|
|||
|
Quote:
what exactly should i put? |
|
#923
|
||||
|
||||
|
@velanne , do a search in the script (CTRL + F) and search the script for the lines:
Code:
UnInstallCB.Visible UninstallCB.Show Code:
//UnInstallCB.Visible ... //UninstallCB.Show; |
|
#924
|
|||
|
|||
|
Quote:
did not work create an uninstaller and still visible. I am using ASIS.v7.2.2 with Hotfix2 which is posted on page 61 |
|
#925
|
||||
|
||||
|
Quote:
Code:
UninstallCB := TNewCheckBox.Create(WizardForm);
with UninstallCB do
begin
Parent := WizardForm.SelectDirPage;
Left := ScaleX(270);
Top := ScaleY(150);
Width := ScaleX(240);
Height := ScaleY(17);
Caption := ExpandConstant('{cm:CreateUninstall}');
Checked := True;
Visible := False;
end;
|
| The Following User Says Thank You to Cesar82 For This Useful Post: | ||
velanne (01-01-2021) | ||
|
#926
|
|||
|
|||
|
Quote:
|
| The Following User Says Thank You to velanne For This Useful Post: | ||
Cesar82 (01-01-2021) | ||
|
#927
|
||||
|
||||
|
Updated a new package (you should use this as a new folder instead of overwrite existing files just for leftovers/deleted things).
Code:
v7.2.2
_____________________________________________________
- Updated compressors
- On cancelling installation the {app} folder will now be deleted
- Added XTool 2020 support
- Added DiskSpan_GUI support (thanks to Cesar82)
- Fixed cancel button
- Removed some leftovers from previous versions in script which are not used anymore
- Moved 'DefaultInstallDir=' key to [Settings] section
> [ExtractSettings] section removed
- Fixed title on ExitSetupMessageBox if special chars were used (no hieroglyphs)
- Updated DiskSpan_GUI to latest version
- Fixed a problem with lower/uppercase "FreeArc_X" in records.ini reading
- Updated COMPRESSOR_GUI.txt help file (this contains some usefull information now instead to be empty)
__________________
Haters gonna hate
|
| The Following 6 Users Say Thank You to KaktoR For This Useful Post: | ||
Cesar82 (11-01-2021), ffmla (11-01-2021), L0v3craft (11-01-2021), mausschieber (11-01-2021), Mortal Lord (11-01-2021), Titeuf (11-01-2021) | ||
|
#928
|
|||
|
|||
|
COMPRESSOR_GUI
Compression tools marked with a red box in the image are not active when selected
|
|
#929
|
||||
|
||||
|
Quote:
If the game to be compressed does not work on 32-bit systems (64-bit only), edit the Settings.ini file. Code:
[Settings] 64BitOnly=1 If you never need to install on 32-bit systems you can change the key of the Settings.ini file even if the game is compatible with 32/64-bit systems |
| The Following 3 Users Say Thank You to Cesar82 For This Useful Post: | ||
|
#930
|
|||
|
|||
|
Hi everyone :'(
Hi, I downloaded the new version 7.2.2 and modifying as usual only the info type name etc. etc. as always done, now the problem is that it does not install anything when I load the game the completion happens in a flash, like compression always used "FreeArc" method -m5 changing extension (as always done) how come now I can't install? how do i make everything work as before? (it seems that InternalRecords is no longer there or am I wrong?) Thanks for all friends
|
![]() |
|
|
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 |