Multiple .bmps on a page
Hi,
I'm using nsis 2.39. I want to paint two .bmp files onto my installer's license page, one on the left and the other on the bottom. I have scoured the NSIS docs, the web and this forum for any ideas but have come up empty. Is it possible to do what I want with NSIS or is it hard wired to allow for only one such image on a page?
I played around with the Example code gfx.nsi. Along with the definition of the macro BIMAGE, it has:
Page license licenseImage
...
AddBrandingImage left <num1>
Function licenseImage
!insertmacro BIMAGE "Path\to\a.bmp" ""
FunctionEnd
I added this code:
Page license licenseImage2
AddBrandingImage bottom <num2>
Function licenseImage2
!insertmacro BIMAGE "Path\to\my.bmp" ""
FunctionEnd
after the "Function licenseImage" definition.
The function licenseImage2 had no effect. But the second AddBrandingImage had an effect. The bottom of the license page was stretched vertically and the left .bmp file did not stretch to the bottom.
I don't want to stretch the window vertically or for the graphic on the bottom to stretch across the whole window. I want to insert the bottom graphic with the side of the left graphic acting as its edge.
I'd appreciate any answer or insight anyone can provide me.