Skip to content
⌘ NSIS Forum Archive

How to write text into custom page?

5 posts

ilaiyaraja#

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?
ilaiyaraja#
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#
I googled for 'nsdialogs font', and the first hit gave me this:


(My point is, it often helps a lot to google. Google is your friend.)