0

How to disable the toggle nature of buttons in spark:Buttonbar so that it would behave similar to mx:ButtonBar?

Kirk Broadhurst
  • 27,836
  • 16
  • 104
  • 169
newtoflex4
  • 13
  • 4

2 Answers2

4

This works on the button bar:

requireSelection="false"
Kodiak
  • 5,978
  • 17
  • 35
Trist
  • 1,306
  • 1
  • 11
  • 17
0

If you only want to make a visual change:

Create a custom skin class so that the "down state" of the button uses the same skin as the 'up state'.

JeffryHouser
  • 39,401
  • 4
  • 38
  • 59
  • 1
    Yep, Flex 4 Spark components are built for ease of skinning / design; and with such changes some things are harder. – JeffryHouser Oct 28 '10 at 18:54