I have a simple problem:
the "NO" becomes: "NOOFF" (with OFF overwriting the ON not replacing it.
this is on a panel on a scroll view (this works on a simple textview) but not here on a extview on a panel.
B4X:
If Sounds.Text ="(TAP TO CHANGE) SOUND - ON" Then
Sounds.Text = "(TAP TO CHANGE) SOUND - OFF"
do_sound = "NO"
Else
Sounds.Text = ""
Sounds.text = "(TAP TO CHANGE) SOUND - ON"
do_sound = "YES"
End If
the "NO" becomes: "NOOFF" (with OFF overwriting the ON not replacing it.
this is on a panel on a scroll view (this works on a simple textview) but not here on a extview on a panel.