I'm looking for an way to change the label of the "Next"-Button in an MUI custom page. I think I know which NSIS instructions I have to use, but anyway it seems I don't know how to use them.
Could someone give me an clue?
!insertmacro MUI_HEADER_TEXT "Header" "Description"
!insertmacro MUI_INSTALLOPTIONS_INITDIALOG "ioUpgrade.ini"
FindWindow $0 "#32770"
GetDlgItem $1 $0 1 ;next/install button
SendMessage $1 ${WM_SETTEXT} 1 "STR: Install"
!insertmacro MUI_INSTALLOPTIONS_SHOW
BTW when should I use "STR: <a string>" or "#<a number>"? I seems to have a different meaning.
Thanks...
David