Псевдоклассы можно использовать, но только не как вложенные, увы. То есть — без классов))

Код AS3:
var style:StyleSheet = new StyleSheet();
style.setStyle('a', { textDecoration:'underline', color:'#0000ff' });
style.setStyle('a:hover', { textDecoration:'underline', color:'#ff0000' });
style.setStyle('a:active', { textDecoration:'none', color:'#00ff00' });
myText.styleSheet = style;
myText.htmlText = "Link to the <a href='http://google.com'>site</a>";