0

I'm using Flex 3 to build a button bar with several options. Is is possible to underline the labels of my buttons?

BenMorel
  • 34,448
  • 50
  • 182
  • 322
Rui
  • 5,900
  • 10
  • 38
  • 56

1 Answers1

0

Just set the textDecoration property of your button.

<s:Button width="15%" height="32%" label="myButton" click="myButton_clickHandler(event)" textDecoration="underline"/>

Works for the buttonbar, as well.

<s:ButtonBar textDecoration="underline">

</s:ButtonBar>