Text Box ?uestion

Whats the script to make one? I searched for a while and I couldnt find it :frowning:

what are you trying to make a text box in?

For MX:

click the “A” on the tools menu on the left hand part of the screen when you have MX open.

if thats now what you want, please be more specific.

I think he means in HTML

http://www.w3schools.com/html/html_forms.asp

^Hmm… Those didn’t really help much, but it was somewhat close to what I needed. I just want a blank text field, like the Reply box I’m typing in now.


<html>
<body>

<textarea rows="10" cols="30">
This is a text area.
</textarea>

</body>
</html> 

<html>
<body>

<textarea rows=“10” cols=“30”>
This is a text area.This is a text area.This is a text area.This is a text area.This is a text area.This is a text area.This is a text area.This is a text area.This is a text area.This is a text area.This is a text area.This is a text area.This is a text area.This is a text area.This is a text area.This is a text area.This is a text area.This is a text area.
</textarea>

</body>
</html>

Hahah! Thanks man!