Мне нужно настроить некоторые параметры в кнопках зажигания. Я пытаюсь установить setStyle, но он не работает с borderColor.
Мой код выглядит примерно так:
for each (var prop:XML in option.elements()){
var but:spark.components.Button = new spark.components.Button();
but.label=prop
but.width=button_width
but.setStyle("verticalAlign",'middle')
but.setStyle('chromeColor', '#'+arrayRGB[j]) // arrayRGB have the colors i need
but.setStyle('borderColor','#'+arrayRGB[i]) //<-- Don't work
container.addElement(but)
}
Спасибо