This is driving me crazy, it seems like it should be simple but I haven't been able to find any documentation on it anywhere. I have a List() that I've created and populated with a DataProvider. I want it so that when you click on a list item that item becomes disabled (in the same way you set list.enabled = false).

Since I haven't found out how to disable the list, I have something like this which just removes the entry:

Code:
list.addEventListener(Event.CHANGE, stuff);

function stuff(event:Event) {
    list.removeItem(event.target.selectedItem);
}
I've tried event.target.enabled = false and event.target.selectedItem.enabled = false and neither are working, and I can't find jack diddly anywhere about how to disable individual list items so that you can't click on them.