View Single Post
Old 24-08-2005, 12:37   #4 (permalink)
gray
i still want paying
 
gray's Avatar
 
Join Date: Oct 2003
Location: newcastle, uk
Posts: 4,841
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);
  Reply With Quote