i am trying to create a custom page that will check (better display the result of) for prerequisites.
!insertmacro MUI_HEADER_TEXT "Prerequisites" "Prerequisites are being evaluated"
nsDialogs::Create /NOUNLOAD 1018
Pop $0
${IF} $0 == error
Abort
${ENDIF} as things come along, there are more prerequisites than will fit on a page without it looking totally cramped or reducing font size to barely readable. So i though a scrollbar would be nice, i found https://nsis-dev.github.io/NSIS-Foru.../t-211280.html but it did not do the trick, so far i have been fiddling around, and my last try is:
System::Call 'user32::MoveWindow(i$0,i 20 ,i 70,i 200,i 400,i 0)'
System::Call 'User32::EnableScrollBar(i $0,i 3,i 0)'
System::Call 'User32::ShowScrollBar(i $0,i 3,b 1)' I do get a larger page (covering the bottom of the installer) but no scollbars. I slowly come to the conclusion this might just no be possible so i am looking for other ideas to make a scrolling list (including icons that change during the process).

Can someone indicate if it is possible what i want to do (scrollbars) oder has a hint for me what other way i could go?
Thanks a lot
x