mhavoc
24th September 2004 06:06 UTC
where to find 'PRINT' macro
There are many awesome examples that uses lines such as...
!insertmacro PRINT "$(ERROR_MDAC_INVALID_PATH)"
but I can't seem to find the definition for or an example file for the PRINT macro. Can someone point me towards it?
thank you.
kichik
24th September 2004 10:51 UTC
Which examples?
mhavoc
24th September 2004 15:52 UTC
There are a couple of examples in the archive that contain it...
Installing the .net Framework
http://nsis.sourceforge.net/archive/...instances=0,64
Installing MDAC
http://nsis.sourceforge.net/archive/...php?pageid=482
Both examples appear to be by 'zimsms' (very nice examples btw), so I suppose they will be the ultimate answer but I wondered if it was a standard macro.
thanks.
kichik
24th September 2004 16:37 UTC
If zimsms wrote those examples, he's probably your best chance of getting the macro defintion.
According to other posts by zimsms, I think the macro is:
!macro PRINT text
SetDetailsPrint both
DetailPrint `${text}`
SetDetailsPrint none