flex remove buttons border from toggle button bar

3k views Asked by At

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

i want to put the style in css file

2

There are 2 answers

0
Raul Agrait On BEST ANSWER

You should us the following style:

.myButtonStyle
{
    skin: ClassReference("mx.skins.ProgrammaticSkin");
}
0
JeffryHouser On

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.