WizardImageFile在Inno Setup 5.5.8中不起作用

时间:2016-01-20 16:44:55

标签: image installation inno-setup setup-project

我安装了最新版本的Inno Setup v5.5.8(a),现在我无法在安装向导中查看WizardImageFile位图文件。它在以前的版本中运行得很好。我做错了什么或它的错误?这是我在Inno Setup向导的帮助下创建的脚本示例。

当然setup_inno.bmpsetup_inno_small.bmp与iss脚本文件位于同一文件夹中。小图像工作得很好,setup_inno.bmp是24位颜色深度(Windows格式),宽度和高度为164X314像素。

任何建议?

此致

; Script generated by the Inno Setup Script Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "My Program"
#define MyAppVersion "1.5"
#define MyAppPublisher "My Company, Inc."
#define MyAppURL "http://www.example.com/"
#define MyAppExeName "MyProg.exe"

[Setup]
; NOTE: The value of AppId uniquely identifies this application.
; Do not use the same AppId value in installers for other applications.
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)

AppId={{EF909D9F-7C2F-46E8-9BBF-C65D3323A436}
AppName={#MyAppName}
AppVersion={#MyAppVersion}
;AppVerName={#MyAppName} {#MyAppVersion}
AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
AppSupportURL={#MyAppURL}
AppUpdatesURL={#MyAppURL}
DefaultDirName={pf}\{#MyAppName}
DisableProgramGroupPage=yes
OutputBaseFilename=setup
Compression=lzma
SolidCompression=yes
WizardImageFile=setup_inno.bmp
WizardSmallImageFile=setup_inno_small.bmp
WindowStartMaximized=yes
WindowShowCaption=no
WindowVisible=yes
BackColor=$000000
BackColor2=$FFFFFF


[Languages]
Name: "english"; MessagesFile: "compiler:Default.isl"

[Tasks]
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked

[Files]
Source: "C:\Program Files (x86)\Inno Setup 5\Examples\MyProg.exe"; DestDir: "{app}"; Flags: ignoreversion
; NOTE: Don't use "Flags: ignoreversion" on any shared system files

[Icons]
Name: "{commonprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon

[Run]
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent

2 个答案:

答案 0 :(得分:11)

您是否知道自Inno Setup 5.5.7以来默认跳过了欢迎页面?

  

根据Microsoft的桌面应用程序指南的建议,DisableWelcomePage现在默认为yes。 ...以前所有版本的默认值均为no

因此,您实际上只能在最后一个(已完成)页面上看到WizardImageFile,而不是在之前的第一个(欢迎)页面上看到。

答案 1 :(得分:2)

我发现了answer。它声明:

  

{{1>}显示在欢迎完成页面上。但是,欢迎页面现在默认跳过(请参阅WizardImageFile),因此通常只会在“完成”页面上显示。 (默认情况下已启用此功能,但您也可以将其禁用 - 请参阅DisableWelcomePage。)

     

DisableFinishedPage显示在所有其他页面上。

这解释了为什么我看不到图像。奇怪的是欢迎页面默认关闭?

我发现this表示:

  

不要使用欢迎页面 - 尽可能使第一页功能正常。仅在以下情况下使用可选的“入门”页面:

     
      
  • 该向导具有成功完成向导所必需的先决条件。
  •   
  • 用户可能无法根据其首页选择页面了解向导的用途,并且没有进一步说明的余地。
  •   
  • “入门”页面的主要说明是"开始之前:"。
  •