one_eddie
2nd November 2009 10:10 UTC
Custom information instead of file paths
Hi,
Is there a way I could show my custom message instead of message which is being shown when using "File" command?
To be clear. Instead of showing
Copying file 1...
Copying file 2...
Copying file 3...
I would like to show
Copying components...
Regards
pengyou
2nd November 2009 10:53 UTC
Use the command SetDetailsPrint: http://nsis.sourceforge.net/Docs/Cha...html#4.9.14.14
The makensis.nsi script in the NSIS\Examples folder shows how to display more meaningful messages; here is a fragment from that file
SetDetailsPrint textonly
DetailPrint "Installing NSIS Core Files..."
SetDetailsPrint listonly
one_eddie
2nd November 2009 11:53 UTC
I was looking at DetailsPrint and similar. Don't know how missed SetDetailsPrint. It's working as expected. Thank you.