Lucas Eduardo Active Member Licensed User Mar 16, 2020 #1 Hello, it's possible to change the link color from CS Builder? If yes, how could i do it? Thanks.
Semen Matusovskiy Well-Known Member Licensed User Mar 16, 2020 #2 For example, if you use a TextView, you can simply change it's TintColor. Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Mar 17, 2020 #3 You can switch to BBLabel (BCTextEngine) and it will be simple: B4X: BBLabel1.Text = $"[url][color=red]https://www.b4x.com[/color][/url]"$ If you want the link to be clickable then use BBCodeView. It is also possible to change the default URL color: B4X: TextEngine.TagParser.UrlColor = xui.Color_Green Upvote 0
You can switch to BBLabel (BCTextEngine) and it will be simple: B4X: BBLabel1.Text = $"[url][color=red]https://www.b4x.com[/color][/url]"$ If you want the link to be clickable then use BBCodeView. It is also possible to change the default URL color: B4X: TextEngine.TagParser.UrlColor = xui.Color_Green