ilaiyaraja
5th February 2013 08:45 UTC
How to write text into custom page?
I have created custom page using following code.
Function custom
nsDialogs::Create /NOUNLOAD 1018
Pop $Dialog
${If} $Dialog == error
Abort
${EndIf}
DetailPrint "Test"
nsDialogs::Show
FunctionEnd
I want to write some text into that custom page.How to do this?
jpderuiter
5th February 2013 08:52 UTC
Use a label (NSD_CreateLabel).
ilaiyaraja
5th February 2013 09:04 UTC
Thanks.great.Its working.Text has been added successfully.Now i want to customize that text like font,style and etc..Is it possible? sorry i'm new to NSIS script.
MSG
5th February 2013 09:07 UTC
I googled for 'nsdialogs font', and the first hit gave me this:
http://stackoverflow.com/questions/5...nsis-installer
(My point is, it often helps a lot to google. Google is your friend.)
ilaiyaraja
5th February 2013 09:33 UTC
Thanks MSG.I got it.working fine.