I have a list of 2 items with their respective values. I would like to click on a button and have it deselect the previously selected item.
var lista:List = new List();
lista.setSize(100,45);
lista.x = 348;
lista.y = 420;
lista.addItem({label: "Negative feelings",valor:1});
lista.addItem({label: "Positive feelings",valor:2});
addChild(lista);
