|
|
|
#1
|
|||
|
|||
|
Work fine,, but i need the two messages OnEnter. I need something similar to your new EI demo altef,, for example when mouse down on option button, display two text.. one with "options text title" and one with "options text description". ohh,, i forget,, and when not button on mouse down, i like the text dissapears.. sorry for the disturb
Last edited by Logrim; 05-05-2014 at 07:49. |
| Sponsored Links |
|
#2
|
||||
|
||||
|
procedure MessageOnEnter(hBtn:HWND);
begin sndPlaySound(ExpandConstant('{tmp}\mouseover.wav') , $0001); case hBtn of NextBtn: begin MessageTitleLabel.Caption:=ExpandConstant('{cm:Sta rtInstallTitle}'); MessageLabel.Caption:=ExpandConstant('{cm:StartIns tall}'); end; end; end; procedure MessageOnLeave(hBtn:HWND); begin sndPlaySound(ExpandConstant('{tmp}\mouseleave.wav' ), $0001); case hBtn of NextBtn: begin MessageTitleLabel.Caption:=''; MessageLabel.Caption:=''; end; end; end; |
|
#3
|
|||
|
|||
|
Thanks man,, work perfectly.. i look newbie on this... BEGIN, END... ains.. thanks a lot again man.
|
|
#4
|
|||
|
|||
|
Altef,, the MessageOnEnter procedure works fine, but how change the finish button caption? i mean when finish, the caption is the StartTittle but i need to change to FinishTittle..
|
|
#5
|
||||
|
||||
|
procedure MessageOnEnter(hBtn:HWND);
begin sndPlaySound(ExpandConstant('{tmp}\mouseover.wav') , $0001); if WizardForm.CurPageID = wpFinished then begin case hBtn of NextBtn: begin MessageTitleLabel.Caption:=ExpandConstant('Whateve r, blah, write here'); MessageLabel.Caption:=ExpandConstant('Whatever, blah, write here'); end; end else begin case hBtn of NextBtn: begin MessageTitleLabel.Caption:=ExpandConstant('{cm:Sta rtInstallTitle}'); MessageLabel.Caption:=ExpandConstant('{cm:StartIns tall}'); end; end; end; end; Last edited by Razor12911; 06-05-2014 at 03:09. |
| The Following User Says Thank You to Razor12911 For This Useful Post: | ||
Logrim (06-05-2014) | ||
|
#6
|
|||
|
|||
|
Thanks razor,, work like a charm :d.. i forgot to include wizardform in curpageid... ains..
Another problem... i hope,, really i hope is the last.. when i cancel the installation (external compression) even in 1% or 2%, the correct message of rollingback appears, but the setup dont quit.. i dont know why.. this is my cancel procedure: Quote:
|
|
#7
|
||||
|
||||
|
procedure CancelButtonClick(CurPageID: Integer; var Cancel, Confirm: Boolean);
begin sndPlaySound(ExpandConstant('{tmp}\click.wav'), $0001); Confirm:=False; Cancel:=True; if CurPageID=wpInstalling then SuspendProc; if CurPageID=wpInstalling then begin ISDoneError:=True; ISDoneCancel:=1; CoderLabel.Hide; PercentageLabel.Hide; WizardForm.Progressgauge.Hide; FileStatusLabel.Setbounds(350,325,500,15); FileStatusLabel.Font.Color:=clRed; FileStatusLabel.Caption:=ExpandConstant('{cm:Rolli ngFileStatusLabel}'); DelTree(ExpandConstant('{app}'), True, True, True); end; if CurPageID=wpInstalling then ResumeProc; end; |
| The Following User Says Thank You to Razor12911 For This Useful Post: | ||
Logrim (06-05-2014) | ||
|
#8
|
|||
|
|||
|
i have a little problem.. i want the destock shorcut checked in the setup, but i dont find a way to work..
this is my shorcut procedures: Quote:
P.D. Problem solved,, was easy... ains.. only adding " BtnSetChecked(DesktopCheck,True)" to wpwelcome in CurPageChanged.. Last edited by Logrim; 08-05-2014 at 15:49. Reason: solved |
|
#9
|
|||
|
|||
|
i need to know how see the installer in the taskbar please
thanks for your help.
Last edited by Logrim; 15-05-2014 at 13:47. Reason: solved |
| The Following User Says Thank You to Logrim For This Useful Post: | ||
Danik1B9 (19-06-2014) | ||
|
#10
|
|||
|
|||
|
hi, i would like to know if there is a way to show the installer pages in the taskbar when mousedown in the taskbar icon. thanks.
|
| The Following User Says Thank You to Logrim For This Useful Post: | ||
Danik1B9 (19-06-2014) | ||
|
#11
|
||||
|
||||
|
Quote:
WinTB 1.0.0.8 by David.D.Rocco
__________________
Glass BB | BlackBox v2 | Portable Installer |
|
#12
|
|||
|
|||
|
Thanks y_thelastknight... the problem with wintb is that when i mousedown in taskbar setup icon, dont show the buttons and text, only de png that i set in background. My installer have a bmp mask.
|
|
#13
|
|||
|
|||
|
How to make a botva button visible or invisible in ini file? i have botva buttons for redist checkboxes, and redist names in ini. i want that when i set not visible the directX label for example, the directx button not visible too. Now i have this in CuPageChanged and work well,, but i have to hide the label in the ini and the button in the script..
Quote:
Last edited by Logrim; 16-05-2014 at 23:12. |
|
#14
|
||||
|
||||
|
@logrim Contact me in fb.. i have to confirm something.
__________________
Glass BB | BlackBox v2 | Portable Installer |
|
#15
|
||||
|
||||
|
Quote:
DirectXLabel.Visible:=ExpandConstant('{code:Redist 1Name}') <> '';
__________________
Glass BB | BlackBox v2 | Portable Installer |
| The Following User Says Thank You to y_thelastknight For This Useful Post: | ||
Danik1B9 (19-06-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 |