bgsound ?
hi !
is it possible to insert a bgsound to my installer with f.e. a single line of code ?
Archive: bgsound ?
bgsound ?
hi !
is it possible to insert a bgsound to my installer with f.e. a single line of code ?
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
works great ! tyvm !
but what about 2 different licenses ? f.e.
License_IT.txt & License_UK.txt how can i perfom this ?
!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)
very nice !
works perfect ! thx