Archive: icon issues


icon issues
i am setting the icon by using the following code:

Icon "bin\fuse.ico"

in both the installer and uninstaller. its 16 x 16, why am I getting the following error?


"Error finding icon resources: installer, uninstaller icon size mismatch - see the Icon instruction's documentation for more information -- failing!
Error - aborting creation process"


in general use this

!define MUI_ICON ".\graphics\Icone.ico"
!define MUI_UNICON ".\graphics\Icone.ico"


make sure the icons have the same color-depth. you find help on this in multiple forum-posts, just use the search feature.

Originally posted by Freezerman350
in general use this

!define MUI_ICON ".\graphics\Icone.ico"
!define MUI_UNICON ".\graphics\Icone.ico"
not correct, this syntax is only used for installers with MUI.

icons
im using the same icon for both. theres no reason why it wouldnt match itself. any suggestions?


can you attach your icon?


of course, here you go...


Maybe the problem is no the icon,it's the script.
Any chances that you can post part of it?


im just using this...

Icon "bin\fuse.ico"


Ok, if so, then the problem can be the path.

Be sure that the icon is there.


wouldnt the error say "file not found" if it wasnt there?


Icon "bin\fuse.ico"
UninstallIcon "bin\fuse.ico"


that worked, thank you sir. I didnt have the UninstallIcon in the uninstall section, just had Icon.

my b.