OK, here is some code and more details.
I have removed all borders from the following skins in Flash via the comboBox component elements:
CellRenderer:
disableSkin
upSkin
selectedDisableSkin
This gives me a nice clean dropdown with no borders (no sides, no top, no bottom).
But I can't create a bounding box for the dropdown list (a border to include all the rows).
The comboBox uses this array which is a fixed set of data, 9 elements;
var categoryArray:Array = new Array
Here is the code where I try to style the dropdown list
ActionScript Code:
inputCategoryCB = new ComboBox();
inputCategoryCB.dropdownWidth = 159;
inputCategoryCB.width = 159;
inputCategoryCB.move(159, 56);
inputCategoryCB.prompt = "Select One";
inputCategoryCB.rowCount = 9;
inputCategoryCB.dropdown.rowHeight = 22;
inputCategoryCB.dropdown.setStyle("borderStyle" , "solid");
inputCategoryCB.dropdown.setStyle("borderColor" , 0xCC0000);
inputCategoryCB.dataProvider = new DataProvider(categoryArray);
inputCategoryCB.selectedIndex = ComponentUtils.findItemIndex(inputCategoryCB, State.getState().itemCategory);
inputCategoryCB.tabIndex = 1;
your help is really needed!!!!
thank you