I have a listbox filled with data and i am using the following code to customize it
ActionScript Code:
list_box.useRollOver = true;
list_box.selectedIndex = 0;
list_box.fontStyle = "Ariel";
list_box.fontSize = 8;
list_box.selectionColor = "0x999966";
list_box.rollOverColor = "0x6E7743";
list_box.textSelectedColor = "0xFFFFFF";
list_box.backgroundColor = "0xBEBEB1";
this all works fine except ... the rollOverColor doesn't stay when I hover over a particular item in in the list, does anyone know why that is ?
Mike