Mega Code Archive

 
Categories / Flash ActionScript / XML
 

The content of an element can be changed using the XML classs instance method replace( )

package{   import flash.display.Sprite;      public class Main extends Sprite{     public function Main(){         var doc:XML = <DOC>             <P ALIGN="CENTER">E4X is fun</P>           </DOC>;                  doc.replace("P", <DIV>E4X is convenient</DIV>);                  trace(doc);     }   } }