Android Question BBScrollingLabel keeps previous value when new text is empty

wimpie3

Well-Known Member
Licensed User
Longtime User
I'm currently using

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?
 
Top