Archive: custom page


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.


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 :)

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


Maybe it's nicer to put a message on the Welcome page. See the Modern UI Readme for info about changing the text.


Thank you to all.


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 :)

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


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.