Input box is a text field in which you enter your data with the help of keyboard. It is usually used to save Visitors/members information which they input during their visit to your site. It can be in the form of Emailer, Guestbook, Contact form or in any other form which is not supposed to be dynamically used, for example you input a number 4 and when you press Proceed button, it calculates square of 4. Here is an example of
Input Text Box and
Dynamic Text Box. In this example you will input some text in Input text box and it will send that DATA to dynamic TEXT and perform and action.
Steps in this example.------------------------------
Note : In this example you will make one Input Text Box and one Dynamic Text Box. Then you will send data of Input Box to Dynamic text through variable.1. Make a text box and select its type as
Input Box. In its Name type
inputName. Check the box of
target. In variable box use any name for example
inputVar. Now
inputVar is the variable which will carry the data you will input in this box.
2. Make a text box and select its type as Dynamic Text Box. Give its name and
variable as above. See in the following figure.

3. Place a
Stop action on Frame number 1 in main timelime.
4. In front of your Dyanmic Text box place any effect you like.
5. Make a button and put this action in its release state.
on (release) {
dynamicVar=inputVar;
gotoSceneAndPlay("",2);
}