Dynamic textfield with fixed height but variable width?

How can i make a dyn textfield with fixed height but variable with width?

ps what is the difference between


var pageContent:TextField;

vs 

var pageContent:TextArea;

this might help…

toolTip.dynt.autoSize = true;
toolTip.dynt.wordWrap = true;

TextArea is a component I do believe

you want

toolTip.dynt.autoSize = true;

btw

He might also want:

toolTip.dynt._height = enter height in pixels;

It sure is. The main difference is that it’s identical to a dynamic textfield except that it has scroll-bars built in.