Activity for Carlos Suberviola

  • Carlos Suberviola Carlos Suberviola modified a comment on discussion Open Discussion

    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));

  • Carlos Suberviola Carlos Suberviola modified a comment on discussion Open Discussion

    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));

  • Carlos Suberviola Carlos Suberviola posted a comment on discussion Open Discussion

    $>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...

  • Carlos Suberviola Carlos Suberviola modified a comment on discussion Open Discussion

    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));

  • Carlos Suberviola Carlos Suberviola posted a comment on discussion Open Discussion

    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));

1