views:

250

answers:

2

hi,

how to remove the border of a togglebuttonbar button, with keeping the theme color??

i want to put the style in css file

+1  A: 

You should be able to remove the border on a button by creating a button skin.

Once you have that skin, you can use the ToggleButtonBar's buttonStyleName style to modify the styling of the buttons in the bar. Also check out firstbuttonStyleName and lastButtonStyleName.

www.Flextras.com
+1  A: 

You should us the following style:

.myButtonStyle
{
    skin: ClassReference("mx.skins.ProgrammaticSkin");
}
Raul Agrait