Trying to create a textfield that can be added to a AnchorPane.. but nothing shows.. when I do a label it works fine..
am I doing it wrong?
am I doing it wrong?
B4X:
Sub CreateTextBox(ID As String) As TextField
Dim t As TextField
t.Initialize("TXT_Script")
t.tag = ID
't.SetSize(280, 29)
t.PrefWidth = 280
t.PrefHeight = 29
Return t
End Sub