Thanks laurits, I'm just wondering though... do you mean apply this to one large TextField... or each item from the XML goes into its own TextField?
Also, here's an example of my XML:
Code:
<data>
<word ID="1">
<copy>Link 1</copy>
<link>http://www.google.com</link>
</word>
<word ID="2">
<copy>Link 2</copy>
<link>http://www.cnn.com</link>
</word>
etc...
</data>
> Each link above is put into its own TextField, then the TextField is added to its own Movie Clip. The clips height & width is expanded so that the mouse rolls over it & an image is pulled from the library to create the hover. Everything works so far...
Now all of this is put into an MC called mcMenu.
Since mcMenu holds the XML ... it doesn't expand. My list gets cut off.
If I could figure a way to just add a scroll bar to mcMenu (created dynamically) I could go on with my life
I've found that the UIScrollBar can be added only to TextFields. Can't really wrap my ahead around why you can't do an MC as easily but ya know... nothing is easy I suppose.