only show detailprint
Hi all,
It would also be nice to be able to only show the DetailPrint in the log window and not all off the copy commands etc.
SetDetailsPrint/view do to much.
Thnx in advance
Archive: auto exit and name question
only show detailprint
Hi all,
It would also be nice to be able to only show the DetailPrint in the log window and not all off the copy commands etc.
SetDetailsPrint/view do to much.
Thnx in advance
You could use something like this:
!macro DetailPrint TEXT
SetDetailsPrint both
DetailPrint "${TEXT}"
SetDetailsPrint none
!macroend
!define DetailPrint "!insertmacro DetailPrint"
Section -blah
${DetailPrint} "Hello!"
SectionEnd
Thnx,
works like a charm