Mega Code Archive

 
Categories / Flash ActionScript / XML
 

To obtain an XMLList representing all comments and processing instructions within an entire XML tree

package{   import flash.display.Sprite;      public class Main extends Sprite{     public function Main(){         var novel:XML = <BOOK ISBN="0000000000" INSTOCK="false">             <TITLE>ActionScript</TITLE>             <AUTHOR>J, J</AUTHOR>             <PUBLISHER>Books Ltd</PUBLISHER>           </BOOK>;                  var tempRoot:XML = <tempRoot/>;         tempRoot.appendChild(novel);                  trace(tempRoot..*.comments(  )[0]);  // First comment in the document     }   } }