use the defaultSettings() object to reset an individual flag, ignoreWhitespace, and then reset all the settings to their defaults using setSettings(). : settings « XML « Flash / Flex / ActionScript






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

 

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

        XML.ignoreWhitespace = XML.defaultSettings().ignoreWhitespace;
        trace(XML.ignoreWhitespace); // Displays: true
        XML.setSettings(XML.defaultSettings());

    }
  }
}

        








Related examples in the same category

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