cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
DeepakJ
Level 3

How to set the background in an InstallScript project to an image?

Hello,

I would like to place an image in the background of my installscript app but am not quite sure of how to do so. Some assistance would be greatly appreciated. It would also help if you were very specific as I have been in contact with this program for less than a day.

Thanks,
Deepak
Labels (1)
0 Kudos
(1) Reply
DeepakJ
Level 3

This is what I have so far. Thanks for the help.

(OnShowUI)

if ( LoadStringFromStringTable( "TITLE_MAIN", szTitle ) < ISERR_SUCCESS ) then // Load the title string.
szTitle = IFX_SETUP_TITLE;
endif;
SetTitle( szTitle, 24, WHITE );
Enable( FULLWINDOWMODE );
Enable( BACKGROUND );
PlaceBitmap ( "Setup.bmp" , 1 , CENTERED , CENTERED , FULLSCREEN );
0 Kudos