PCEnhancer
1st August 2004 05:58 UTC
Newbie: Needs Help with E-Mail on Finish page, is it possible
I needs help with an E-Mail link on the Finish page, is it possible to put a link there that if selected will have the efect as shown in the C:\Program Files\NSIS\Contrib\InstallOptions\test.nsi when compiled. PLease help me with this.
mumuri
1st August 2004 09:46 UTC
Hello PCenhancer
are you sure it's not testlink.nsi ;)
If youre finishing page is made with install option , you only have to add a field like this one
[Field 3]
Type=Link
Left=20
Right=-40
Top=55
Bottom=65
State=mailto:someone@anywhere.com
Text=* Send E-mail
PCEnhancer
1st August 2004 11:24 UTC
Oh :eek:, Ya your right it is testlink.nsi
But what i need to know is how to map that into the Finish page. so far after trying nearly every thing, I'm here back at square one.
Name "NewBie Link"
OutFile "HelpME!!!.exe"
!include "MUI.nsh"
!define MUI_FINISHPAGE_LINK E-Mail
!define MUI_FINISHPAGE_LINK_LOCATION
!insertmacro MUI_PAGE_FINISH
!insertmacro MUI_LANGUAGE "English"
Section "Components"
SectionEnd
If someone would show me how things need to be done with the link from here then I think I might have a chance. And after that I can map the changes into my installer. Thanks
deguix
1st August 2004 12:38 UTC
(You forgot that this define can pass a value)
!define MUI_FINISHPAGE_LINK_LOCATION "mailto:someone@anywhere.com"
PCEnhancer
1st August 2004 13:37 UTC
Thank you:D. I did not realize that. I owe you one. Thank again.