|
|
|
#1
|
||||
|
||||
|
How to use precomp+srep+lzma64 or precomp+srep64+lzma in bat file? for example Razor12911 code: -mprecomp+srep64+lzma64:a1:mfbt4:d158m:fb273:mc1000 :lc8
I add code in bat file but gives error unsupported. Last edited by ahmetbtmn; 21-05-2014 at 03:27. |
| The Following User Says Thank You to ahmetbtmn For This Useful Post: | ||
Danik1B9 (19-06-2014) | ||
| Sponsored Links |
|
#2
|
||||
|
||||
|
copy and paste arc.ini lzma64.exe and srep64.exe from conversion packer to your bat location
|
|
#3
|
||||
|
||||
|
Could all these customization which inno can deliver, could possibly be achieved by NSIS? or does the form have a dedicated session for NSIS scripts and tool like Inno has?
__________________
Non temete l'oscurita - accettate il suo abbraccio. |
| The Following User Says Thank You to Shadow Delta For This Useful Post: | ||
Danik1B9 (18-06-2014) | ||
|
#4
|
||||
|
||||
|
yea I think so as long as there are libraries for NSIS that can do the same with Inno, you can always import some abilities from dll files.
|
| The Following User Says Thank You to Razor12911 For This Useful Post: | ||
Danik1B9 (18-06-2014) | ||
|
#5
|
||||
|
||||
|
Hi I use this compression: arc a -ep1 -ed -r -w.\Data\ Data-09a.db -msrep+delta+rep+lzma:a1:mfbt4:d158m:fb273:mc1000:l c8 "D:\1\*" I know it even better, can anyone advise what mni, eg: BLACKBOX, RG Mechanics, RG Revenants. thanks
|
|
#6
|
|||
|
|||
|
Hi, i need help with a little thing.. I try to explain the problem with my poor english..
I need to know how to move a custom form and at same time move the wizardform.. I mean move the two as if it were one. I hope you understand me .. thanks.
|
| The Following User Says Thank You to Logrim For This Useful Post: | ||
y_thelastknight (27-06-2014) | ||
|
#7
|
|||
|
|||
|
Hi all,, please i need to know how to make a custom new folder button in a custom folderbrowse form. thanks..
|
|
#8
|
||||
|
||||
|
Hi , I want the installer don't make AppName or DefaultDirName to use installer as abatch like this :
|
|
#9
|
||||
|
||||
|
@Darkangel5
Fix the lines where there are errors, using phone in bed, not even using a computer. ![]() first create a timer like this: var FontTimer: TTimer; InstallMouseMove: Boolean; second create the Timer's procedure procedure FontOnTimer(Sender: TObject); begin if InstallMouseMove and (installlabel.font.size < 18) then installlabel.font.size:=installlabel.font.size:= + 1; if not InstallMouseMove and (installlabel.font.size > 12) then installlabel.font.size:=installlabel.font.size:= - 1; end; the label's mouse enter and leave procedure InstallLabelOnEnter(Sender: TObject); begin InstallMouseMove:=True; end; procedure InstallLabelOnLeave(Sender: TObject); begin InstallMouseMove:=False; end; now at initializewizard do this InstallLabel.OnMouseLeave:=@InstallLabelOnLeave; InstallLabel.OnMouseEnter:=@InstallLabelOnEnter; FontTimer:=TTimer.Create(WizardForm) with FontTimer do begin OnTimer:=@FontOnTimer; Interval:=10; Enabled:=True; end; installlabel is the existing label. |
|
#11
|
||||
|
||||
|
thanks Razor12911 but it didn't work well , after opening setup.exe file it work like this :
but if press browse & change the location it dosn't work like this : ![]() please any help .
|
|
#13
|
||||
|
||||
|
thanks but the same problem , you don't understand what I mean ,
I want the setup doesn't make folder to install the files ( setup don't use DefaultDirName ) just install files in any partition or folder ![]() ![]()
|
|
#14
|
|||
|
|||
|
hello,
sorry to use google translation to translate. I made an autorun (see screen). ![]() I would like to know how to make a zoom effect passage of the mouse has on the button readme, manual etc etc. I post a message there about 2 months and had me help razor12911 but I can not do So if anyone has a script to help me would be nice ca thank you |
|
#15
|
||||
|
||||
|
Quote:
defaultdirname={sd} [code] procedure DirEditOnChange(Sender:TObject); begin WizardForm.DirEdit.Text:=AddBackSlash(ExtractFileD rive(WizardForm.DirEdit.Text)); end; procedure InitializeWizard; begin WizardForm.DirEdit.OnChange:=@DirEditOnChange; end; |
| The Following User Says Thank You to Razor12911 For This Useful Post: | ||
MMR (12-07-2014) | ||
![]() |
|
|
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 |