I am having problems with Edit Boxes and AGKb11, I am using the latest AppGameKit player on my Android devices.
1. The value of GetEditBoxChanged is always returning 0, so I cannot use it to test for completion of user input.
2. After entering text followed by Return, tapping the text box for a second (or subsequent time) gives it focus but often fails to bring up the on-screen keyboard, if I keep tapping the edit box the keyboard will sometimes appear.
Does anyone get a similar (or a different) result?
CreateEditBox(1)
SetEditBoxSize(1,70,5)
SetEditBoxPosition(1,10,20)
SetEditBoxTextSize(1,12)
//Problems with GetEditBoxChanged and On-Screen Keyboard
do
Print (\"hello world, quit to End\")
Print (\"Edit Box Changed : \"+Str(GetEditBoxChanged(1)))
Print (\"Edit Box Has Focus : \"+Str(GetEditBoxHasFocus(1)))
text$=GetEditBoxText(1)
If text$=\"quit\" then End
Print (\"Text entered is:\"+text$)
Sync()
loop
Thank you.