Bansaw
20th July 2010 15:53 UTC
changing the Cancel button text to "Skip" ...?
I have created a custom page.
Instead of it saying "Cancel" at the bottom, how can I get it to say "Skip" instead ?
(I tried this post with no luck: http://forums.winamp.com/showthread....+agree+license)
Animaether
20th July 2010 20:12 UTC
GetDlgItem $0 $HWNDPARENT 2 /* 1 = Next, 2 = Cancel, 3 = Back */
SendMessage $0 ${WM_SETTEXT} 0 "STR:Skip"
That will change the text - but it's not going to change the behavior of the button.. it's still going to cancel the installer.
Bansaw
20th July 2010 21:12 UTC
thanks, that works great.
Bansaw
21st July 2010 16:14 UTC
(I meant to say "change the Next > button" not "Cancel")
Of course, this meant I had to change GetDlgItem $0 $HWNDPARENT 2
to GetDlgItem $0 $HWNDPARENT 1