Skip to content
⌘ NSIS Forum Archive

display alternate string above progress bar

3 posts

jweinraub#

display alternate string above progress bar

Hello,

I hide the listbox during install and i do not want any of the functions to display the extract: file, however, i want to display custom text (similar to firefox installer).

e.g.,

Section "MainSection" SEC01
SetDetailsPrint none
DetailPrint "Installing Foobar Software"
...
...
DetailPrint "Creating Shortcut Icons"
..
..
etc

how can i do this because the above wont display anything (i tried textonly as well, but it echoed the File tags.
Homer1969#
SetDetailsPrint textonly
DetailPrint "Installing Foobar Software"
SetDetailsPrint none
...
...
SetDetailsPrint textonly
DetailPrint "Creating Shortcut Icons"
SetDetailsPrint none
...