ActionScript:
  1. // create a new XML object
  2. var sports:XML = new XML();
  3.  
  4. // set the ignoreWhite property to true (default value is false)
  5. sports.ignoreWhite = true;
  6.  
  7. // After loading is complete, trace the XML object
  8. sports.onLoad = function(success) {
  9.   trace(sports);
  10. };
  11.  
  12. // load the XML into the sports object
  13. sports.load("http://rss.news.yahoo.com/rss/sports");