need help for displaying text

hi friends…

i am doing a simulaton in unity. which has a part of entering name and password. in this i have a key board texture and i had placed the button over there , when the mouse button hits over the letter, that letter to be displayed in runtime as we type user name and password

pls help me friends…!!1

thanks
arun

what have you got so far ? you will need to look at GUI buttons and use those

i had made abt it… but i need it as text input from run time . to make as a real time machine.

( ihad a texture of touch screen pad in my monitor which there user have to click on letters over the touch screen )

thanks
arun

i have no idea what you are looking for.
can you post your code so we can see ?

string typedString = "";

void OnGUI(){

GUILayout.Label(typedString);

if (GUILayout.Button("A")){
typedString += "A";
}
if (GUILayout.Button("B")){
typedString += "B";
}
if (GUILayout.Button("Space")){
typedString += " ";
}

}

Are you looking for something like that?