Quote:
|
Originally Posted by gray
could do it using a dynamic text field and use something like this
Code:
function underlineTextField(theTextField)
{
var underlinedText = new TextFormat();
underlinedText.underline=true;
theTextField.setTextFormat(underlinedText);
theTextField.setNewTextFormat(underlinedText);
}
underlineTextField(yourText);
|
thats great thanks! all i need to do now is limit it so it only underlines the links in the dynamic textfield. Am trying to figure it out now but if anyone knows how to do this it would be fantastic! thanks.