How the heck do I do this?

ok, I have a question, and I’m still not too clear on it. I want to have a link section on my flash page, and I have lots of links. I want to know if it’s possible to make a scrollable textbox that has the links in them. First of all, I dont know how to stick a link inside a textbox. I’ve been told that all I have to do is write inside

<a href = "url">go to this page</a>

but I do that… and all of that is what shows up. i want my text box to look like this:

Visit these links:
so and so’s page
so and so’s Other page

And I want it to scroll. So how do I do that? do I have to make a separate text file and load it into the textbox? or do I need to make a textbox for EVERY SINGLE LINK? (so that I’m putting in the link through the texbox properties…)
please help…

see this as an example

DAMMIT!

I hate not having flash at work… I’ll take a look at it when I get home…

basically its just setting a textfield to recognise html either through the [<>] icon in the properties bar, or by using

textFieldName.html = true;

then assigning its html text to be the appropriate text with the right html tags (with a href)


textFieldName.htmlText = "<**b>title<**b><**br><**a href=\"link.html\">click<**/a>";