sLeX
11th March 2005 11:09 UTC
HEADERIMAGE_RIGHT Problem
Hi...
I´ve got a problem with my script and I really don´t know how to solve this problem.
/quote
!define MUI_ICON "P:\Icons\Kosy.ico"
!define MUI_ABORTWARNING
!define MUI_WELCOMEFINISHPAGE_BITMAP "D:\TempCK\image.bmp"
!define MUI_HEADERIMAGE_RIGHT
!define MUI_HEADERIMAGE_BITMAP "D:\TempCK\wintry.bmp"
/quote
When I leave out the _right everything´s doing fine and the bitmap wintry is shown on the left side. When I use the command _right the text moves to the left side and the icon instead of the pic is shown on the right side ... I don´t know why ... !
glory_man
11th March 2005 11:20 UTC
Is there
!define MUI_HEADERIMAGE
string in your script?
sLeX
11th March 2005 12:33 UTC
I don´t think so ...
do you have any idea what the problem is?
glory_man
11th March 2005 14:01 UTC
This variable allow you to change picture for header.
From MUI documentation
MUI_HEADERIMAGE
Display an image on the header of the page.
So if this variable not definied only icon will be displayed in header. Even if comment !define MUI_HEADERIMAGE_RIGHT.
So if you want to display headerimage on right you must insert
!define MUI_HEADERIMAGE
!define MUI_HEADERIMAGE_RIGHT
!define MUI_HEADERIMAGE_BITMAP D:\TempCK\wintry.bmp"
sLeX
11th March 2005 14:06 UTC
Yeah, now it´s workin´great !
thank you guys !