How to reset a ComboBox?
I'm adding a combo box to the stage and putting a prompt on it. Once the operation on the stage is complete I'm "clearing" the selections of the user. However I can never get a combo box to clear correctly. I want to just deselect the item that was selected and add the prompt again. Here's how I'm adding it:
my_cb.prompt = "Select...";
my_cb.dataProvider = year_db;
my_cb.setStyle("embedFonts", true);
Now reseting it I've tried everything but this gives me a blank prompt:
my_cb.selectedItem = null;
my_cb.prompt = "Select...";
Thanks
