Is there a way to have a dynamic text fields height be set exactly to what the content inside it is. I have a code that scrolls threw a movie file from the top to the bottom of the contents of the file. So I want to put the dynamic text field in the movie file and have it only be scrollable till the bottom. There are 5 buttons each will be loading in different content in that text field(at different times)?
Thanks for any ideas you have.
EDIT:
Also changing this once more shouldnt matter though cause no ones responded yet and i dont wanna flood this with threads...
This is actionscript i got from a tutorial to make a dynamic graph but its only increasing vertically (i want it to go horizontally) i swapped the movie to expand horizontally but its still going vertically.Any ides? Theres some other stuff but it just loads in values from a text file and the other one reloads the frame this code is in. bar is a movie containing an increasing block with a motion tween 1-100 frames. there are 14 instances of it each with the number next to bar (bar1, bar2, etc.)
Code:a = 1;
while (Number(a)<14) {
tellTarget ("bar" add a) {
gotoAndStop(eval("_level0/:bar" add ../:a));
}
a = Number(a)+1;
}

