Abstract Avatars for All Creative Profile UseMatt Houserhttps://www.figma.com/community/file/1249154526125777853https://creativecommons.org/licenses/by/4.0/Remix of “Abstract Avatars for All Creative Profile Use” (https://www.figma.com/community/file/1249154526125777853) by “Matt Houser”, licensed under “CC BY 4.0” (https://creativecommons.org/licenses/by/4.0/)colmNovember 14, 2006 at 2:24 PM#Changing background color in MUIHi, How can I get rid of the grey background in the MUI instfiles page (see picture)? I tried setting MUI_BGCOLOR and MUI_INSTFILESPAGE_COLORS both to white, but nothing happened.
Abstract Avatars for All Creative Profile UseMatt Houserhttps://www.figma.com/community/file/1249154526125777853https://creativecommons.org/licenses/by/4.0/Remix of “Abstract Avatars for All Creative Profile Use” (https://www.figma.com/community/file/1249154526125777853) by “Matt Houser”, licensed under “CC BY 4.0” (https://creativecommons.org/licenses/by/4.0/)kichikNovember 14, 2006 at 9:48 PM#You have to manually set the background color for each page once the page displays. Do it in each page's show callback function. To get the HWND, use FindWindow as used in Contrib\Modern UI\System.nsh.
Abstract Avatars for All Creative Profile UseMatt Houserhttps://www.figma.com/community/file/1249154526125777853https://creativecommons.org/licenses/by/4.0/Remix of “Abstract Avatars for All Creative Profile Use” (https://www.figma.com/community/file/1249154526125777853) by “Matt Houser”, licensed under “CC BY 4.0” (https://creativecommons.org/licenses/by/4.0/)colmNovember 16, 2006 at 9:35 AM#Fixed. The code I used: Page instfiles "" ShowInst Function ShowInst ; Remove grey area above progress bar FindWindow $0 "#32770" "" $HWNDPARENT GetDlgItem $1 $0 1006 SetCtlColors $1 000000 FFFFFF ; Remove grey area below progess bar FindWindow $0 "#32770" "" $HWNDPARENT SetCtlColors $0 000000 FFFFFF FunctionEnd