With this code i can set the background color to transparent:
But, if the TextArea gets focus then there is a new Background Color, how to set this color to transparent?
B4X:
CSSUtils.SetStyleProperty(TextArea1,"-fx-control-inner-background","transparent")
CSSUtils.SetStyleProperty(TextArea1,"-fx-background","transparent")
CSSUtils.SetBackgroundColor(TextArea1,Main.fx.Colors.Transparent)
But, if the TextArea gets focus then there is a new Background Color, how to set this color to transparent?