rmoc
Posts: 49
Joined: Tue Mar 14, 2017 8:27 pm

Remove Branding

I use AI Enterprise. Is it possible to remove the AI branding?

Designer:
designer.png
designer.png (110.1 KiB) Viewed 3271 times
Running Setup:
setup.png
setup.png (130.66 KiB) Viewed 3271 times
Liviu
Posts: 1325
Joined: Tue Jul 13, 2021 11:29 am
Contact: Website

Re: Remove Branding

Hello,

For the Azure Theme (LightSkyBlue variation in your case) the watermark text is added on the images which make up the frame, located in the following paths:

C:\Program Files (x86)\Caphyon\Advanced Installer 19.9\themes\azure\resources\variations\powderblue

You can edit the background.jpg images from the Head folder with a tool like Paint or Photoshop.

After that, you can go to the Themes page --> Images tab and replace the image for the Background property:
custom background.png
custom background.png (140.65 KiB) Viewed 3264 times

Now the setup looks like below:
setup.png
setup.png (140.29 KiB) Viewed 3263 times

You can also create your own background image and change it.

Attached you can find my modified background image.

Hope this helps!

Best regards,
Liviu
Attachments
background.jpg
background.jpg (6.25 KiB) Viewed 3264 times
________________________________________
Liviu Sandu - Advanced Installer Team
Follow us: Twitter - Facebook - YouTube
rmoc
Posts: 49
Joined: Tue Mar 14, 2017 8:27 pm

Re: Remove Branding

Thank you very much for the very fast and friendly support. :)
rmoc
Posts: 49
Joined: Tue Mar 14, 2017 8:27 pm

Re: Remove Branding

Unfortunately, this procedure does not work for the "Spring\LightSkyBlue" theme.
spring_lightSkyBlue.png
spring_lightSkyBlue.png (148.37 KiB) Viewed 3250 times
This is based on HTML. After a bit of searching, I came across the file "...\themes\spring\resources\html\common.js". This provided the JavaScript function "AdvinstTextMark()" which then enters the text on the HTML page.
If the function is adapted as follows, no branding takes place.

Code: Select all

function AdvinstTextMark() {
}
I don't know if this is what is wanted, but it worked for my application.
Liviu
Posts: 1325
Joined: Tue Jul 13, 2021 11:29 am
Contact: Website

Re: Remove Branding

Hello,

Sorry for that, the Spring\LightSkyBlue theme is similar with Azure Theme\LightSkyBlue and somehow I overlooked this.

Yes, the Spring theme is developed using HTML.

On these dialogs we use an html control (TabHost) which contains the whole page in HTML.
If the function is adapted as follows, no branding takes place.

Code: Select all

function AdvinstTextMark() {
}
I don't know if this is what is wanted, but it worked for my application.
This is the only solution for this. You can use it as you wrote it or you can add blank text:

Code: Select all

function AdvinstTextMark() {
  advinsttext = '';
  document.write('<div id=\'advinst-text-shadow\'>' + advinsttext + '</div><div id=\'advinst-text\'>' + advinsttext + '</div>');
}
Please let us know if you have any other questions.

Best regards,
Liviu
________________________________________
Liviu Sandu - Advanced Installer Team
Follow us: Twitter - Facebook - YouTube

Return to “Common Problems”