To obtain an XMLList representing all comments and processing instructions within an entire XML tree : Comments and Processing Instructions : XML Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » XML » Comments and Processing Instructions »

 

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
    }
  }
}

        



Leave a Comment / Note


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


Flash / Flex / ActionScript examples

 Navioo XML
» Comments and Processing Instructions