Есть два ComboBox'а area_combobox и carrier_combobox. Присваиваю им свойства так:

Код:
...
function setComboBoxStyle(target:ComboBox) {
target.setStyle("themeColor","haloGreen");
target.setStyle("selectionColor",0xF7C655);
target.setStyle("rollOverColor",0xF9D686);
target.setStyle("borderStyle", "alert");
target.setStyle("backgroundColor", 0xFFFACA);
target.setStyle("fontFamily", "Verdana");
target.setStyle("fontWeight", "bold");
target.setStyle("fontSize", 12);
target.setStyle("color", 0x547700);
target.setStyle("textSelectedColor", 0x764701);
target.setStyle("textRollOverColor", 0x764701);
target.setStyle("marginLeft", 5);
target.setStyle("openDuration", 200);
target.setStyle("openEasing", Bounce.easeIn);
}
...
setComboBoxStyle(area_combobox);
setComboBoxStyle(carrier_combobox);
...
Все нормально, только вот второй (carrier_combobox) тормозит при складывании. Не могу понять, ведь первый комбик работает на ура!
