Use E4X to dot down to the particular element node, and then use the @ operator followed by the attribute's name to access its value
package{ import flash.display.Sprite; public class Main extends Sprite{ public function Main(){ var fruit:XML = <fruit name="Apple" color="red" />; trace( fruit.@color ); } } }