Branding Removal in InstallAware 11
Posted: Sun Jun 12, 2011 6:47 pm
Hey guys,
As you know, we added a branding removal feature in InstallAware 11. To activate it, set the MYAHLOGO variable to TRUE at the beginning of your script, like so:
Please note that there are a few confusing strings that can be confused with branding, but are actually normal strings that can be removed:
1) When you use an InstallAware dialog theme, you will see a label that is placed on the top left corner of each dialog. This label will contain the text "$TITLE$ Setup - InstallAware Wizard". However, even though you can manually edit this label to remove the InstallAware Wizard part, you might confuse it with the InstallAware branding (for example when working with themes like the Aero one where the title bar extends over that label). Therefore, keep in mind that this text has to be manually removed and will not be affected by setting the MYAHLOGO variable to TRUE.
2) When you launch an InstallAware setup you will see a splash screen that is titled InstallAware Wizard. This string, again, has nothing to do with branding. Instead, its an installer shared string and can be edited by running the mTranslator.exe application from the InstallAware 11\trans dir. Use the tool to change the value of this string for the relevant language to whatever your would like.
Good luck!
As you know, we added a branding removal feature in InstallAware 11. To activate it, set the MYAHLOGO variable to TRUE at the beginning of your script, like so:
Code: Select all
Set Variable MYAHLOGO to TRUE
Please note that there are a few confusing strings that can be confused with branding, but are actually normal strings that can be removed:
1) When you use an InstallAware dialog theme, you will see a label that is placed on the top left corner of each dialog. This label will contain the text "$TITLE$ Setup - InstallAware Wizard". However, even though you can manually edit this label to remove the InstallAware Wizard part, you might confuse it with the InstallAware branding (for example when working with themes like the Aero one where the title bar extends over that label). Therefore, keep in mind that this text has to be manually removed and will not be affected by setting the MYAHLOGO variable to TRUE.
2) When you launch an InstallAware setup you will see a splash screen that is titled InstallAware Wizard. This string, again, has nothing to do with branding. Instead, its an installer shared string and can be edited by running the mTranslator.exe application from the InstallAware 11\trans dir. Use the tool to change the value of this string for the relevant language to whatever your would like.
Good luck!