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)
changing the Cancel button text to "Skip" ...?
4 posts
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.
GetDlgItem $0 $HWNDPARENT 2 /* 1 = Next, 2 = Cancel, 3 = Back */
SendMessage $0 ${WM_SETTEXT} 0 "STR:Skip"
thanks, that works great.
(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
Of course, this meant I had to change GetDlgItem $0 $HWNDPARENT 2
to GetDlgItem $0 $HWNDPARENT 1