The first option for the drop down menu works only. The 4 other after it don't work. I had it working and I thouhgt I t was this code, but now its not working. Is there something I'm missing or meesing up?

THANKS
//These are global Settings that enable you to set styles and color Schemes
_global.style.setStyle("themeColor", "0xBED7D7");
_global.style.setStyle("openEasing", mx.transitions.easing.Bounce.easeOut);
// SetStyle does the first color in the comboBox & dropdown.setStyle fix's the colors on the drop down menu
_root.main.combo.setStyle("backgroundColor",0xFFFFFF);
_root.main.combo.setStyle("borderStyle",0xFFCC00);
_root.main.combo.setStyle("color",0xFFFFFF);
_root.main.combo.dropdown.setStyle("backgroundColor",0xFFFFFF);
_root.main.combo.dropdown.setStyle("color",0x000000);
// These are the fields I created for the drop down
_root.main.combo.addItem({data:0, label:" combo"}); // This one is made white
_root.main.combo.addItem({data:1, label:" General Inquiries"}); // These one is made black
_root.main.combo.addItem({data:2, label:" Technical Support"}); // These one is made black
_root.main.combo.addItem({data:3, label:" About The Web Site"}); // These one is made black
_root.main.combo.addItem({data:4, label:" Other"});

Ask A New Question
Reply





MultiQuote




|