(Using NSIS 3.10v, window 10, MUI2.nsh)
Is it possible to change the button image as a mouse event for the next button?
(I’ve tried using graphics-installer(1hour),
but I already have a lot of (UI) like modern.exe modified to ResourceHacker for customization,
so, if I use the above ‘graphics-installer’, I can’t use ‘Custom ‘Contrib/UIs’, so there’s a limit to using graphics-installer.)
For example, I would like to do the following.
System::Call 'user32::LoadImage(i 0, t "button.bmp", i ${IMAGE_BITMAP}, i 0, i 0, i ${LR_CREATEDIBSECTION}|${LR_LOADFROMFILE}) i.s'
Pop $6
SendMessage $NextButton ${BM_SETIMAGE} ${IMAGE_BITMAP} $6
Or all leavepage functions (next events)
Should I use the method of changing the image?
The above example is only when you click the mouse, but it would be nice if there was a way to also change it in the mouse hover.