In flash, when loading a stylesheet to format XML, does the stylesheet apply if not loading the entire XML document into a singular textField? Below the stylesheet does not apply to the textField.
For example:
style = new TextField.StyleSheet();
style.load("mystyle.css");
style.onLoad = function() {
myText.styleSheet = style;
XMLload();
}
function XMLload() {
var myXML:XML = new XML();
myXML.ignoreWhite = true;
myXML.load("data.xml");
myXML.onLoad = function(success) {
if(success) {
//myText.text = myXML;
myText.text = this.firstChild.firstChild.firstChild.nodeValue;
}
}
}
EDIT: I found out what I was doing wrong, I stripping out the tags, and just taking the nodeValue, so then there was nothing for the CSS to actually apply too.
myText.text = myXML;myXMLis of typeXML, whilemyText.textshould be string. Does this assign correct? – Eugeny89 Feb 17 at 8:11