emiste7
18th August 2003 21:26 UTC
custom page
I want to give a the reseller a demo/cd( free copy of my sofware) but i dont want they can sale it.
And I want before the welcome page a short explanation (like: this is a demo cd not for resale).
It is possible to have a little windows before the welcome page????
Im using modern MUI.
Joel
18th August 2003 21:34 UTC
insert a custom page before the welcome, more or less like this:
Page custom PrePage "" ""
!insertmacro MUI_PAGE_WELCOME
!insertmacro MUI_PAGE_LICENSE
Read InstallOptionts manual :)
Afrow UK
18th August 2003 21:54 UTC
InstallOptions documentation can be found within Contrib\InstallOptions\Readme.html
Look at examples (nsi and ini files) too which are located in the same directory.
-Stu
Joost Verburg
18th August 2003 21:55 UTC
Maybe it's nicer to put a message on the Welcome page. See the Modern UI Readme for info about changing the text.
emiste7
18th August 2003 22:02 UTC
Thank you to all.
Joel
18th August 2003 22:39 UTC
Originally posted by Joost Verburg
Maybe it's nicer to put a message on the Welcome page. See the Modern UI Readme for info about changing the text.
nah...
Is nicer with a custom page....
you can add pretty pictures :)
atsuk
9th September 2003 11:11 UTC
i have different wish. I want custompage to be shown afther directory page, not before welcome page as it is now. i'm using modern MUI. is there some different command for modern MUI for custompage? here is an explanation what i've done so far.
#code:
!define MUI_WELCOMEPAGE
!define MUI_LICENSEPAGE
!define MUI_COMPONENTSPAGE
!define MUI_COMPONENTSPAGE_SMALLDESC
!define MUI_DIRECTORYPAGE
Page custom SetVinstall "Varukoopia"
!define MUI_STARTMENUPAGE
!define MUI_FINISHPAGE
!define MUI_FINISHPAGE_SHOWREADME "$INSTDIR\algus\readme.txt"
!define MUI_FINISHPAGE_NOREBOOTSUPPORT
kichik
9th September 2003 13:43 UTC
Atsuk, please re-read section 3 of the MUI documentation (also available online). Everything about setting the pages order, and the right way to add pages (you're not using it in the script above) is described there.
All this is said assuming you're using the latest CVS version, according to earlier posts. But even in b3 your above snippest is not the right way to go. The MUI documentation of b3 explains how to add custom pages too.