I'm new to FinalBuilder and have a question to get started with InstallShield 2009:
We want to build five setups, which are very similar.
The only difference is, that the bitmaps shown in the setup on the left side or on top should be different in each setup and also the files copied (everytime a hole directory) and other items in the start menu.
How can we do this? At the moment, we use 5 different installshield projects... :-/
If the projects are similar, you can use DEFINES (you can set it per installer from the Releases menu).
Then, on OnBegin() you need to call a function (I don't remember its name) to set the bitmaps like this -
IFDEF INSTALLER_1
function_name_to_set_bitmap_on_dialogs( location of the first bitmap here....)
ENDIF
IFDEF INSTALLER_2....
......
and so on for each installer.
In any case, if your installers are similar, you should think about putting all of them in one project and use release flags instead of multiple, similar installers.
Of course, you could use FB to copy the bitmap to your production folder before building, for each installer.