How to hide Keyboard when user touch inside a GUI.TextField?

Hi,

I’m trying to get an non editable GUI.TextField, but everytime when we touch the textfield keyboard pops up.
according to our requirement we dont want the keyboard to popup at all.

Is there a way to stop this?

Abhishek.

Use a label instead, and skin it to look like a text field.

GUI.Label ( Rect (25, 25, 100, 30), "Some text." ,"textfield");

Thanks buddy, i dont know y i didnt thought about it at the first place… :o