Change the color of the Button
!include “MUI2.nsh” !include “nsDialogs.nsh” OutFile “Test.exe” !define MUI_WELCOMEPAGE_TITLE “Welcome to the Example Installer” !define MUI_WELCOMEPAGE_TEXT “This is an example NSIS installer.” !insertmacro MUI_PAGE_WELCOME !insertmacro MUI_PAGE_INSTFILES !insertmacro MUI_LANGUAGE “English” Section nsDialogs::Create 1018 Pop $0 ${NSD_CreateButton} 7u 10u 100u 12u “My Button” Pop $1 SetCtlColors $1 0x00FF00 0x00FF00 ${NSD_OnClick} $1 MyButtonClick ${NSD_CreateNumber} 10U 25% 100u 12u “Message […]