Archive: where to find 'PRINT' macro


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.


Which examples?


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.


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