PDA

View Full Version : Inputting your Name



Ravmaster
November 26th, 2005, 05:31 PM
how can i make someone input their name and make the name be used throught the game

say if i want some one to to say

"hey (name here)" i want to replace the name here bit with what they inputted at the beggingin with their name

nathan99
November 26th, 2005, 05:36 PM
give it a variable name; for eg "name"
then make a dynamic text box, give it an instance name; for eg "talk"
then whenever you want it to occur.


_root.talk = "Hello " + _root.name;

Ravmaster
November 27th, 2005, 02:52 AM
yay thnx ;)