Skip to content
⌘ Forum Archive

auto exit and name question

3 posts

gieltjeedited #

auto exit and name question

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
Afrow UK#
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
-Stu