i used blue.css and also beige.css in flex .i have theme combobox for user changed theme dynamically so i stroed
[Bindable] private var pickcss:Array=["blue.css","beige.css"];
private function css_initializeHandler(event:Event):void
{
pickcssComboBox.selectedIndex = pickcss.indexOf(0);
}
private function css_changeHandler(event:Event):void {
//here how will i apply
styleid= [ pickcssComboBox.selectedItem ];
}
" mx:Label text="Theme"/>
"mx:ComboBox id="pickcssComboBox" dataProvider="{pickcss}" initialize="css_initializeHandler(event)" change="css_changeHandler(event)" width="110"/>"
i used in style not have id so how can i do ? if u know plz explain