I'm currently using
Setting a text in the scrolling label is easy:
However, when I want to clear the label:
the previous label is still shown. So it seems that when there is no text to draw, the previous scrolling text isn't cleared. How can I solve this issue?
[B4X] BBScrollingLabel - rich text scrolling label
(this is an animated gif, it is is much smoother in real usage) BBScrollingLabel is similar to XUI Views ScrollingLabel, however it is based on BCTextEngine and can therefore display formatted text. It is cross platform. Usage instructions: - Download the b4xlib and put it in the B4X...
www.b4x.com
Setting a text in the scrolling label is easy:
B4X:
BBScrollingLabel1.Text="[color=#ffffff][TextSize=28]" & stringtoshow & "[/textsize][/color]"
However, when I want to clear the label:
B4X:
stringtoshow =""
BBScrollingLabel1.Text="[color=#ffffff][TextSize=28]" & stringtoshow & "[/textsize][/color]"
the previous label is still shown. So it seems that when there is no text to draw, the previous scrolling text isn't cleared. How can I solve this issue?