webturtle
20th April 2006 12:23 UTC
ReadMe instead if Licensee Dialog
Hey Guys.
I new with NSIS and created my first project.
Using the MUI i have the possibility to show a license Dialog before installing. It is really easy to show an rtf file here.
But i don't want a icense dialog, i'd rather like a readme dialog before installing where i can show an ReadMe.rtf file.
I used the license dialog to display the file, but there is a lot of text which says something about license an acception around.
So i tried to use an own form but i can't find a way to display an rtf file there.
Can anyone help me?
Chris
webturtle
20th April 2006 13:03 UTC
Sorry for writing as unlogged user
Something went wrong with my login process so i posted as guest user.
galil
20th April 2006 14:03 UTC
Yea, I've done that for myself too...
Irrelevant texts you can modify before inserting page:
!define MUI_LICENSEPAGE_TEXT_TOP " "
!define MUI_LICENSEPAGE_TEXT_BOTTOM " "
!define MUI_LICENSEPAGE_BUTTON "Continue"
!insertmacro MUI_PAGE_LICENSE "readme.txt"
Also you can increase size of that richedit control with tool like exescope/reshacker, so that there would be no wasted empty space.
webturtle
20th April 2006 14:07 UTC
Thx a lot. Thats exactly what i need.
Works fine.