When rebuilding the Script it always outputs the same number of WizardSmallImages as WizardImages in the Setup Header because it is using the same var for both: StrConst('WizardImageFile', GetImageFileList(WizardImages, false)); StrConst('WizardSmallImageFile', GetImageFileList(WizardImages, true)); It should use the appropriate image list: StrConst('WizardImageFile', GetImageFileList(WizardImages, false)); StrConst('WizardSmallImageFile', GetImageFileList(WizardSmallImages, true));
When rebuilding the Script it always outputs the same number of WizardSmallImages as WizardImages in the Setup Header because it is using the same var for both: StrConst('WizardImageFile', GetImageFileList(WizardImages, false)); StrConst('WizardSmallImageFile', GetImageFileList(WizardImages, true)); It should use the correct image list: StrConst('WizardImageFile', GetImageFileList(WizardImages, false)); StrConst('WizardSmallImageFile', GetImageFileList(WizardSmallImages, true));
$>innounp -x -m innosetup-6.2.2.exe ... #94 embedded\License.txt #95 embedded\CompiledCode.bin #96 embedded\WizardImage0.bmp #97 embedded\WizardImage1.bmp #98 embedded\WizardSmallImage0.bmp #99 embedded\WizardSmallImage1.bmp #100 embedded\WizardSmallImage2.bmp #101 embedded\WizardSmallImage3.bmp #102 embedded\WizardSmallImage4.bmp #103 embedded\WizardSmallImage5.bmp #104 embedded\WizardSmallImage6.bmp install_script.iss: LicenseFile=embedded\License.txt WizardImageFile=embedded\WizardImage0.bmp,embedded\WizardImage1.bmp...
When rebuilding the Script it always outputs the same number of WizardSmallImages as WizardImages in the Setup Header because it is using the same var for both: StrConst('WizardImageFile', GetImageFileList(WizardImages, false)); StrConst('WizardSmallImageFile', GetImageFileList(WizardImages, true)); It should use the correct image list: StrConst('WizardImageFile', GetImageFileList(WizardImages, false)); StrConst('WizardSmallImageFile', GetImageFileList(WizardSmallImages, true));
When rebuilding the Script it always outputs the same number of WizardSmallImages as WizardImages in the Setup Header because it is using the same var for both: StrConst('WizardImageFile', GetImageFileList(WizardImages, false)); StrConst('WizardSmallImageFile', GetImageFileList(WizardImages, true)); Is should use the correct image list: StrConst('WizardImageFile', GetImageFileList(WizardImages, false)); StrConst('WizardSmallImageFile', GetImageFileList(WizardSmallImages, true));