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