I figured it out how to change the bgcolor of the installer.
Including the controls. 🙂
But there is one thing I cannot get to work.
I've got 2 custom pages. In the First I change the color including the section where the buttons are.
After leaving the first custompage it loads the second page.
InstallOptionsEx::initDialog /NOUNLOAD "$TEMP\First.ini"
FindWindow $R1 "#32770" ""
Pop $R1
SetCtlColors $R1 0x000000 0x919CA0
SetCtlColors $HWNDPARENT 0x000000 0x919CA0
InstallOptionsEx::Show
But with different colors. I want it to load the default colors.
But this doesn't work. Can it be done? Or am I looking in the wrong direction.
InstallOptionsEx::initDialog /NOUNLOAD "$TEMP\Second.ini"
FindWindow $R1 "#32770" ""
Pop $R1
SetCtlColors $R1 0x000000 0xD4D0C8
SetCtlColors $HWNDPARENT 0x000000 0xD4D0C8
InstallOptionsEx::Show
Glimmerman