mattquantic
Programmer
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?
results in
Any idea's?
M@)
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@)