If a sub adds several buttons to a scrollview or activity, dynamically, how is it possible to change properties of those buttons from another sub? or is it not? so say
B4X:
Sub a1
For I = 1 to 9
Dim b a button
Activity. Addview (b....
Next
End sub
Sub a2
'B as on a1
Button1.textsize = 10
Button2.textsize = 12
End sub