|
|
|
#1
|
|||
|
|||
|
Quote:
download ISutils and got the CaptureConsole.iss https://www.fileforums.com/showthread.php?t=99835 |
| Sponsored Links |
|
#2
|
||||
|
||||
|
Quote:
Thanks for info. |
|
#3
|
||||
|
||||
|
If you want, send me the script by PM that I take a look.
|
|
#4
|
|||
|
|||
|
[QUOTE=bunti_o4u;486495]Thanks.. It worked with my script. But it throwing weird output don't know why.
https://docs.microsoft.com/en-us/win...dconsoleoutput |
|
#5
|
||||
|
||||
|
Quote:
|
|
#6
|
||||
|
||||
|
Quote:
Be aware that the commands used do not ask for confirmation. |
|
#7
|
|||
|
|||
|
Hi guys
I am a beginner at this, I am trying to repack a 60gb game (Heat) and I am confused on how to add FreeARC to my installer. Can someone give me a tutorial? I am super interested in repacking/compressing games. Can you send me some guides through private message? Thanks |
|
#8
|
|||
|
|||
|
Hi all, dipping my feet back into the Inno pool again - I have gotten to the point where I am trying to add a label, but the label does not show up. Perhaps I am missing something?
[CODE] Code:
var DesktopIconCheckBox: TNewCheckBox; Progress: TNewProgressBar; RequiredLabel: TLabel; Code:
Requiredlabel := TLabel.Create(WizardForm);
with Requiredlabel do
begin
SetBounds(10, 160, 390, 25);
RequiredLabel.Caption := ExpandConstant('{cm:RequiredSpace} {#Size}');
end;
Code:
procedure CurPageChanged(CurPageID: integer); begin if CurPageID = wpWelcome then begin Progress.Hide; RequiredLabel.Show; end; ![]() The pink highlights were the label is meant to be. |
|
#9
|
||||
|
||||
|
Why
![]() ![]()
__________________
Haters gonna hate
|
|
#10
|
|||
|
|||
|
I guess it's from the ASIS.
Could you send the entire code? I don't get that warning when compiling any version of it Edit: I get it as well with compact mode = 1, that code it's not used after preprocessing (ISPP), that's why it give you that warning The code after line 4503 shown in the screen it's not present during the compiling Last edited by pincoball; 26-06-2020 at 12:16. |
|
#11
|
||||
|
||||
|
Was this capture not made before recompiling (Previous Debug)?
You would not have been able to compile with the variable ReloadComponents outside the area defined in the ISPP Code:
ReloadComponents: = False; Code:
#if UseComponents == "1" Code:
var
//////////////////////// Check boxes ////////////////////////
IconsCB, StartMenuCB, {#if CheckCRC == "1"}CRCCheckCB,{#endif} PauseCB, UninstallCB, LimitRAMCB: TNewCheckBox;
|
|
#12
|
||||
|
||||
|
I already got it
![]() But it's not that bad anyway. I was just courios.
__________________
Haters gonna hate
|
|
#13
|
|||
|
|||
|
i have problem with xtool unpack
i use this method code to Compress Code:
-mxprecomp+srep:m3f:a16:d1g+lolz:dtb1:d128m:mtt1:mt8:tt8:mc1023:fba0 and this arc.ini fail Code:
[External compressor:lolz]
header = 0
packcmd = lolz_x64.exe {options} $$arcdatafile$$.tmp $$arcpackedfile$$.tmp
[External compressor:srep]
header = 0
packcmd = srep64 {-option } $$arcdatafile$$.tmp $$arcpackedfile$$.tmp
unpackcmd = srep64 -d -s -- <stdin> <stdout>
[External compressor:xprecomp]
header = 0
packcmd = xtool.exe e:precomp:t90p:zlib - - <stdin> <stdout>
unpackcmd = xtool.exe d:precomp:t4 - - <stdin> <stdout>
[External compressor:xzlib]
header = 0
packcmd = xtool.exe e:precomp:t90p,c128mb:zlib - - <stdin> <stdout>
unpackcmd = xtool.exe d:precomp:t4 - - <stdin> <stdout>
[External compressor:xzstd]
header = 0
packcmd = xtool.exe e:precomp:t90p:zstd - - <stdin> <stdout>
unpackcmd = xtool.exe d:precomp:t4 - - <stdin> <stdout>
[External compressor:xlz4]
header = 0
packcmd = xtool.exe e:precomp:t90p:lz4 - - <stdin> <stdout>
unpackcmd = xtool.exe d:precomp:t4 - - <stdin> <stdout>
[External compressor:xlzo]
header = 0
packcmd = xtool.exe e:precomp:t90p:lzo - - <stdin> <stdout>
unpackcmd = xtool.exe d:precomp:t4 - - <stdin> <stdout>
but this error when use any Script to unpack ![]() ![]()
|
|
#14
|
||||
|
||||
|
Quote:
RC_ERRCODE_INVALID_COMPRESSOR= -2; (* Invalid compression method or parameters *)
__________________
It would be nice if you appreciate my work with the thanks Button |
|
#15
|
||||
|
||||
|
Try to change the parent of the label
Code:
Parent := WizardForm(.WelcomePage); Code:
SetBounds(WizardForm.DirEdit.Left, WizardForm.DirEdit.Top + ScaleX(20), ScaleX(390), ScaleY(25)); ![]() PS: And if I were you, I would change the SetBounds integers and add ScaleX/Y to it
__________________
Haters gonna hate
Last edited by KaktoR; 17-07-2020 at 09:16. |
| The Following User Says Thank You to KaktoR For This Useful Post: | ||
Masquerade (18-07-2020) | ||
![]() |
|
|
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 |