View Single Post
Old 24-08-2005, 13:03   #6 (permalink)
FakeFrench
Fool
 
FakeFrench's Avatar
 
Join Date: Jun 2005
Location: Finsbury Park, London
Posts: 66
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.
  Reply With Quote