Clearing a listbox

How would I go about clearing selections made in a listbox.

I have experimented with clearAll() and setting values to false, but with no luck.

Any ideas??

How would I go about clearing selections made in a listbox.

RemoveButton.onRelease = function() {
listbox.removeItemAt(listbox.getSelectedIndex());
};

Are you trying to clear the whole listbox?

I am not trying to remove any items just remove the selection of a user. When a country of origin is selected and the user hits the clear button the selection remains, i.e. the highlight that indicates the selection remains.

When the form is loaded there is no selection.

I would like to make sure the listbox has no selection when clear is hit