When I add a StyleSheet as the .styleSheet property to a TextField the text doesn't get drawn.
The problem might be that, when a StyleSheet is needed (I'm using it only to format htmlText links) I can't set a TextFormat. But surely that should just mean the text has NO TextFormat.
Here's the relevant code (I do declare and instantiate the TextField earlier in the code; when I DON'T add the StyleSheet that all works correctly so I'm fairly sure that's not the problem):
_linkStyling = new StyleSheet();
_linkStyling.parseCSS('a { color: #99CCFF; }');
_textField.htmlText = p_text; // this is the String parameter passed in to my Text Class
_textField.styleSheet = _linkStyling;
Is there anything I'm doing wrong with this?