how do i add the following as to a couple of words in a dynamic text field. basically its a html type link but needs to have AS applied to it. the dynamic text is within a scroll box.
on(press) {if (selected == “testimonials”){break;}
else {loadMovieNum(“testimonials.swf”,2);}
selected = “testimonials”;
trace (selected);
gotoAndPlay(15);
}
on (rollOver) {
unloadMovieNum(1);
loadMovieNum(“navigatetest.swf”, 1);
}
on (rollOut) {
unloadMovieNum(1);
loadMovieNum(“infocenter.swf”, 1);
}
thanks