All of these settings can be accessed as a group with the settings() static method : settings « XML « Flash / Flex / ActionScript






All of these settings can be accessed as a group with the settings() static method

 

//ignoreWhitespace 
//ignoreComments 
//ignoreProcessingInstructions 
//prettyPrinting 
//prettyIndent 
//ignoreWhitespace


package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){

        trace(XML.settings().ignoreProcessingInstructions); // Displays: true
        XML.ignoreProcessingInstructions = false;
        trace(XML.settings().ignoreProcessingInstructions); // Displays: false

    }
  }
}

        








Related examples in the same category

1.use the defaultSettings() object to reset an individual flag, ignoreWhitespace, and then reset all the settings to their defaults using setSettings().