PDA

View Full Version : Newbie: Needs Help with E-Mail on Finish page, is it possible


PCEnhancer
1st August 2004, 04:58
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, 08:46
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, 10:24
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, 11:38
(You forgot that this define can pass a value)

!define MUI_FINISHPAGE_LINK_LOCATION "mailto:someone@anywhere.com"

PCEnhancer
1st August 2004, 12:37
Thank you:D. I did not realize that. I owe you one. Thank again.