So... I was hoping that edit boxes have become more stable, but this is not the case. We're looking to beta test our game next week and I just ran it on an older device and edit boxes don't work very well at all!!!
You can't enter special characters such as "!"
If you try long press it simply enters the same character as a normal press.
If you go to the alternate keyboard with the actual "!" characters then it still enters the normal keyboard character.
If you hit the delete/backspace key then that key continues to register and will delete text from any box that is clicked on.
It is perfectly fine on Android 4.3
This is on an HTC Droid Incredible 2.
I've reported these problems a number of times and it seems like they just get worse.
Furthermore it seems to happen about 80% of the time.
I have the stock keyboard on this device.
We're hoping to release our game in the next few weeks and it will be very disappointing if I have to exclude devices because keyboard input won't work. This is very frustrating.
It has occurred through every beta up to 19, which I am currently using.
It would be really nice to have this fixed!
boxID1 = CreateEditBox()
SetEditBoxDepth(boxID1,1)
SetEditBoxSize(boxID1 , 60 , 3)
SetEditBoxTextSize(boxID1, 2.5)
SetEditBoxBorderSize(boxID1 , 0.1)
SetEditBoxPosition(boxID1 , 20 , 15)
SetEditBoxBackgroundColor(boxID1 , 200,200,200,255)
SetEditBoxMaxChars(boxID1 , 16)
SetEditBoxTextColor(boxID1 , 100 , 100 , 100)
boxID2 = CreateEditBox()
SetEditBoxDepth(boxID2,1)
SetEditBoxSize(boxID2 , 60 , 3)
SetEditBoxTextSize(boxID2, 2.5)
SetEditBoxBorderSize(boxID2 , 0.1)
SetEditBoxPosition(boxID2 , 20 , 20)
SetEditBoxBackgroundColor(boxID2 , 200,200,200,255)
SetEditBoxMaxChars(boxID2 , 16)
SetEditBoxTextColor(boxID2 , 100 , 100 , 100)
do
sync()
loop