Mega Code Archive
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 = ;
trace( fruit.@color );
}
}
}