Skip to content
⌘ NSIS Forum Archive

about custom Welcomefinish ini

7 posts

huq.duote.com#

about custom Welcomefinish ini

In MUI,
I want welcome Page has a Link like Finish Page.

I use these command
!define MUI_PAGE_CUSTOMFUNCTION_PRE welcomePre

function welcomePre
WriteIniStr "$PLUGINSDIR\ioSpecial.ini" "Field 4" "Type" "link"
WriteIniStr "$PLUGINSDIR\ioSpecial.ini" "Field 4" "Text" "website"
WriteIniStr "$PLUGINSDIR\ioSpecial.ini" "Field 4" "Left" "120"
WriteIniStr "$PLUGINSDIR\ioSpecial.ini" "Field 4" "Right" "315"
WriteIniStr "$PLUGINSDIR\ioSpecial.ini" "Field 4" "Top" "175"
WriteIniStr "$PLUGINSDIR\ioSpecial.ini" "Field 4" "Bottom" "185"
WriteIniStr "$PLUGINSDIR\ioSpecial.ini" "Field 4" "State" "http://www.website.com"
WriteIniStr "$PLUGINSDIR\ioSpecial.ini" "Field 4" "TxtColor" "0xFF0000"
writeinistr "$PLUGINSDIR\ioSpecial.ini" "Settings" "NumFields" "4"
functionend

one Problem is I can't see this link in welcome page.

but on click this link,i can see this link.

why?

please help me!
huq.duote.com#
dd

thanks
This method can't help me!

This link is hide first.
on click this link that link is show!
Red Wine#
Perhaps the link control overlapping with other control?
Check the ini in $PLUGINSDIR to verify that.
huq.duote.com#
s

thanks!
I have bean see the ini file! this file is the
default file.

If there's overlapping control,
why can i click it?
engine#
Hi,my friend~~

Adjust the label's Bottom in [Field 3]... Try:
WriteIniStr "$PLUGINSDIR\ioSpecial.ini" "Field 3" "Bottom" "170"