Mega Code Archive

 
Categories / Flash ActionScript / XML
 

Use E4X to dot down to the particular element node, and then use the @ operator followed by the attributes name to access its value.tx

package{   import flash.display.Sprite;      public class Main extends Sprite{     public function Main(){         var fruit:XML = <fruit name="Apple" color="red" />;                  trace( fruit.@color );     }   } }