string text = mKeyboard.text;
if (TouchScreenKeyboard.hideInput)
{
if (text != "|")
{
if (Application.platform != RuntimePlatform.BlackBerryPlayer) {
if (!string.IsNullOrEmpty(text))
{
Insert(text.Substring(1));
}
else DoBackspace();
mKeyboard.text = "|";
}
}
}