I use AI Enterprise. Is it possible to remove the AI branding?
Designer:
Running Setup:
Code: Select all
function AdvinstTextMark() {
}
This is the only solution for this. You can use it as you wrote it or you can add blank text:If the function is adapted as follows, no branding takes place.
I don't know if this is what is wanted, but it worked for my application.Code: Select all
function AdvinstTextMark() { }
Code: Select all
function AdvinstTextMark() {
advinsttext = '';
document.write('<div id=\'advinst-text-shadow\'>' + advinsttext + '</div><div id=\'advinst-text\'>' + advinsttext + '</div>');
}