Use a wildcard (*) with the @ operator to access all attributes of an element
package{ import flash.display.Sprite; public class Main extends Sprite{ public function Main(){ var fruit:XML = <fruit name="Apple" color="red" />; trace( fruit.@*[0] ); trace( fruit.@*[1] ); trace( fruit.@*.length( ) ); } } }