I am new on codenameone.
I have make a Form Component at the new Gui Builder with ClassName AppSplash. In that AppSplash Class, from the Gui I have two Containers "Container1" and "Container2". Inside Container2 I have a Label named "Memebers_Count". I instantiate this AppSplash from another class like
AppSlpash as = new AppSplash()
How can I access the Label "Members_Count" so as to change its displayed text?
I tried to do somethind like as.getComponentAt(0).getComponentAt(1)
but the second getComponentAt(1) is shown as erron in Netbeans with the notice "cannot find symbol: getComponentAt(1)", while the first getComponentAt is not erroneus.
Any help is aprreciated