I dunno if I'm barking up the wrong tree here but is it possible to use a dynamic text box with it's nice auto scroller AND place events on the text so that I can click a line of text and have something happen?
If as I suspect this is not possible is there a way to acheive this?
Another method is with a scrollpane...create a movieclip of the a "line" in that text field you talked about....if building the list dynamically, just call the data you need and use attachmovie to put all the stuff in the scrollpane..
__________________
Color Wars™ | (kul′ər wôrs) n. - Open conflict between factions. www.theColorWars.com
Cool thanks.
Another question though,
Can I reference the movie inside the scrollpane once it has been attached from the library.....and then add stuff dynamically to that??
like this....
_root.scrollPane.contentPath ="EmptyMovie";
_root.scrollPane.EmptyMovie.attachMovie("foo", "bar", 20);
_root.scrollPane.EmptyMovie.bar.whatever = whatever;