- Home /
Question by
Partasiuk · Oct 21, 2014 at 11:28 AM ·
touchscreenkeyboard
Backspace doesn't work on Touchscreenkeyboard
I looked a lot of topics but don't found an answer. I have a code that working on WindowsEditor platform, but it's doesn't work on mobile device:
if (Input.inputString != "")
{
_label.text = Input.inputString;
if (Input.inputString == "\b")
Backspace = true;
}
So for mobile I write like this:
if (_keyBoard.text != "")
{
_label.text = _keyBoard.text;
if (_keyBoard.text == ...)
Backspace = true;
}
What I should to do here "_keyBoard.text == ..." ?
Comment
Your answer
Follow this Question
Related Questions
TouchScreenKeyboard Should Close When GUI.TextField Loses Focus 0 Answers
Is it possible to check if the touchscreen keyboard has been closed? 0 Answers
GUI.SetNextControlName , GUI.FocusControl in IOS. Bug? 1 Answer
simulate pc keyboard input in android touch screen keyboard 0 Answers
Keyboard in IOS 1 Answer