Image as installer background. How to do that with inno 5.5.9?
标签:
inno-setup
相关问题
- Inno Setup - Run InstallUtil from .Net 4.5 Locatio
- ISCC - /D compiler-parameter seems to have no effe
- Setting DestDir from Inno Pascal?
- Unpin app from taskbar, startmenu using Inno Setup
- How to restrict user input of the directory edit b
相关文章
- In inno setup how to set the unins000.exe with pro
- Is it possible to create checkbox tree view in Inn
- How to add a region drop-down in Inno Setup?
- Signing installer of my program generated by Inno
- How to check 64/32-bit in Inno setup
- Inno Setup - How to create checkboxes at finished
- Inno Setup - BorderIcons dropdown menu
- Inno Setup - How to display a message after instal
I do not think this is possible in Inno Setup proper. Maybe is some Inno Setup clone.
The problem is that all labels in Inno Setup are
TStaticText
, which is not transparent. So you would have to replace all withTLabel
. And there's a lot of them. And they are managed by Inno Setup. So you would somehow have to continuously update the newTStaticText
's to the values set to originalTLabel
's by the Inno Setup. It may not even be possible.So actually, it's possible to create a page like in your question. But only because there are no standard Inno Setup labels. But you cannot hide all of them.
Similar questions:
How to hide the main panel and show an image over the whole page?
Maybe you can try Graphical Installer for Inno Setup which is specially designed for this purpose.
With it you can create cool looking installers and they support changing background (this picture is from last project for Shadow Tactics game) mod:
I am developer of this project (commercial) so if you need more info feel free to ask.