Skip to content
⌘ NSIS Forum Archive

Colored Text on Finish Page?

3 posts

Jnuw#

Colored Text on Finish Page?

What I would like to do is add some colors to my text. I checked the MUI readme, but did not see this option. I would like the word "Failed" to be red, "Not Selected for Update" to be gray, and "Successfully Updated" to be green. Is this possible? Thanks a bunch all.



The code is this:

!define MUI_FINISHPAGE_TEXT "\r\nFinal Update Status:\r\n\r\nLoans: $LoansResult\r\nDeposits: $DepResult\r\nMortgage: $MortResult\r\n\r\n\r\nPlease ensure this is correct. If this is not correct, please call BlaBla\r\n\r\nClick Finish to close this wizard."

!insertmacro MUI_PAGE_FINISH
Afrow UK#
This isn't possible yet to my knowledge without an extension dll.

However, what you could do is have individual label controls on the Finish page and color each one individually (using SetCtlColors)

-Stu