Aim - I want the minimum height of a textarea to be 100 and then grow as more newlines are added.
this nearly works except the minimum height isn't 100
<mx:TextArea id="t2" minHeight="100" verticalScrollPolicy="off"
height="{t2.verticalScrollPosition}"/>
also tried
<mx:TextArea id="t2" verticalScrollPosition="100" minHeight="100"
verticalScrollPolicy="off" height="{t2.verticalScrollPosition}"/>
but doesn't quite work.
Any help appreciated.
-Bod

