How to use text as buttons?

I can’t figure this out!
I want to use text in my movie to trigger swf’s, but is there a way to do this other than having to make every sentence or word into a button? (Am I making myself clear?)

regards

<a href=ascommand:function,arguments;>link</a>

wait so are you trying to do this in flash? i dont quite know what you mean.

wowowow fluid can you clarify that ? i’ve been looking for this for decades…

btw this should’nt be in the D&D section…

What I mean is I’m trying to make a website in Flash, and want to use text as buttons. But since there is a lot of text, I wondered if there is another way of doing this. Otherwise I would have to make every sentence into a button.
Should this be in the AS section?
Sorry, newbie…


/* 
create a generic function for this example. However, you can use any function you like. Note 
that you can use any function you like, but you can only use one argument. This is why I've 
used split on the passed string. 
*/
function traceMe(str){
	str = str.split("|");
	for(var i = 0; i < str.length; i++){
		trace(str*);
	}
}
// create the textfield we will use.
this.createTextField("text_txt", 100, 100,100, 400, 100);
text_txt.html = true;
// make our hyperlink.
text_txt.htmlText = "<a href='asfunction:traceMe,Hi|Bye|My'>Click on me for eternal satisfaction!</a>";

the above code was for MLK.

Inflicted, if you are familiar with AS, you can just make one button with a dynaminc text box, and then change the value of that by it’s instance name.

Well, I just started using Flash&AS for a couple of weeks, but these examples make it a lot easier for me to understand it, than just copying codes and not knowing what it means. Now I have to find out myself what it actualy means. Is there a source file for the code you just gave me that I can look at? Makes it easier…
Regards