|
#1081
|
||||
|
||||
|
Hi , I want the installer don't make AppName or DefaultDirName to use installer as abatch like this :
|
| Sponsored Links |
|
#1083
|
||||
|
||||
|
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 .
|
|
#1085
|
||||
|
||||
|
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 ![]() ![]()
|
|
#1086
|
|||
|
|||
|
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 |
|
#1087
|
|||
|
|||
|
One little question, please help me in you can
![]() i have a botva2 button, this: Quote:
I want something like this, but with button not work. SetBounds((InstallGame1Btn.Left + InstallGame1Btn.Width) + 10,0,0,0); This is the label: Quote:
Edit: anyone know how to make a label color semitransparent? Last edited by Logrim; 11-07-2014 at 06:38. |
|
#1088
|
||||
|
||||
|
@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. |
|
#1089
|
||||
|
||||
|
Quote:
var Pos: TRect; begin BtnGetPosition(InstallGame1Btn,Pos.Left,Pos.Top,Po s.Right,Pos.Bottom); //Right is Width and and Bottom is Height SetBounds((Pos.Left + Pos.Right) + 10,0,0,0); end; |
| The Following User Says Thank You to Razor12911 For This Useful Post: | ||
Logrim (11-07-2014) | ||
|
#1090
|
||||
|
||||
|
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) | ||
|
#1091
|
||||
|
||||
|
Quote:
|
| The Following User Says Thank You to Razor12911 For This Useful Post: | ||
Logrim (13-07-2014) | ||
|
#1092
|
|||
|
|||
|
How to add disk space required and avaible.
|
|
#1093
|
||||
|
||||
|
Quote:
i choose the location "C:\fraps\" but it make new folder automatically : ![]() and if i press ok the location change to "C:\" without any dir then it give me error : ![]() please help if you can .
|
|
#1094
|
|||
|
|||
|
i have a question, i'm trying to add wintb to my code, and i can add it without errors, but the taskbar preview not show correctly, my code have mask, and only show in preview the picture, but not the welcome letters or the buttons.. how can i solve it? i hope you can understand my problem.
Last edited by Logrim; 09-09-2014 at 06:29. |
| The Following User Says Thank You to Logrim For This Useful Post: | ||
y_thelastknight (09-09-2014) | ||
|
#1095
|
||||
|
||||
|
Quote:
|
| The Following User Says Thank You to altef_4 For This Useful Post: | ||
y_thelastknight (09-09-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 |