i've almost finished my .nsi 🙂
i've a few questions about the messageboxes...
1) how to go to a new line in the text of the messagebox ?
----> \r\n doesn't work
2) how to fix the size of the messagebox ?
----> I've three or four lines to write, and the width is too big... how to fix it ?
3) If the user hasn't the rights to install (if he's a guest on a pc), I display a messagebox with this code :
but the windows error messagebox comes before my messagebox...
SetOutPath "$INSTDIR"
ClearErrors
File "K!TV\K!TV.exe"
IfErrors messagebox then
messagebox:
MessageBox MB_ICONEXCLAMATION "$(messagebox_no_rights)" IDOK abort
abort:
Quit
then:
How to avoid this window error messagebox to appear ?
4) Does a command already exist in nsis, which sends an error messagebox if the users hasn't the rights to install the software ???
edit : thx for all your answers 😉