Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MX: Actionscript CSS: text-decoration

Status
Not open for further replies.

mattquantic

Programmer
Mar 28, 2004
196
GB
Hi, I sort of have actionscript css working. But, when I try to use the underline property it errors.

But, in the reference it says that text-decoration is supported...

Anyone know anything?

Code:
var qstyles = new TextField.StyleSheet();
qstyles.setStyle("link", 
  {text-decoration: 'underline'}
);
this.News.styleSheet = qstyles;
this.News.html = true;
this.News.htmlText = "<link>hello</link>";

results in

Code:
**Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 3: ':' expected
       {text-decoration: 'underline'}

Total ActionScript Errors: 1 	 Reported Errors: 1

Any idea's?

M@)
 
remove the single quotes around underline

There's always a better way. The fun is trying to find it!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top