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


Flash / Flex / ActionScript examples » XML » Settings »

 

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

    }
  }
}

        



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


Flash / Flex / ActionScript examples

 Navioo XML
» Settings