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.

link|improve this question

myText.text = myXML; myXML is of type XML, while myText.text should be string. Does this assign correct? – Eugeny89 Feb 17 at 8:11
Thanks for the reply Eugeny89. Yeah, it loads correctly and the stylesheet is applied to that textfield. But, what I wanted to know is why when loading a specific node value into the textField the stylesheet does not apply. – leetou Feb 20 at 15:29
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.