Skip to content
⌘ NSIS Forum Archive

bgsound ?

5 posts

Sunshine1981#

bgsound ?

hi !

is it possible to insert a bgsound to my installer with f.e. a single line of code ?
Takhir#
One string - "Search the Forum" link above, mp3 or wav as keyword 🙂 This will give you a lot of samples including 1-3 lines of code.
And one of compact plug-ins with sound for INSTFILES page http://nsis.sourceforge.net/wiki/Embedded_Banner
Sunshine1981#
works great ! tyvm !
but what about 2 different licenses ? f.e.
License_IT.txt & License_UK.txt how can i perfom this ?
Takhir#

!insertmacro MUI_PAGE_LICENSE $(myLicenseData)
...
LicenseLangString myLicenseData ${LANG_ENGLISH} "license_en.txt"
LicenseLangString myLicenseData ${LANG_UKRAINIAN} "license_ua.txt"
LicenseLangString myLicenseData ${LANG_FRENCH} "license_fr.txt"
LicenseLangString myLicenseData ${LANG_RUSSIAN} "license_ru.txt"
LicenseData $(myLicenseData)