I want you to change the default color of the hyperlink to blue.
In HTML text control, you can set the font color by setting the "color" property, but all font colors are changed.
To avoid this, you need to set the font color to the "<a>" tag as follows.
* It is necessary to process before displaying the screen. ("Screen1" > "OnVisible", etc.)
①
Set(DisplayText,HtmlText);
Set(DisplayText,Substitute(DisplayText, "<a", "<font color=blue><a" ));
Set(DisplayText,Substitute(DisplayText, "</a>", "</a></font>" ));
②
Set "DisplayText" to HTML text control in "HtmlText".
However, even if this process is not done, it is preferable that the color of the character is displayed in blue by default, so we want improvement.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.