Frustrating Flex problems solved #5 – ButtonBarButton bugs

So i had a series of custom Buttons all set up perfectly in a ButtonBar, when I realised that the design dictated that one of the buttons was a different size than was happening with the automatic sizing system…

So after discovering that the ButtonBar does not allow facility for resizing the width of a button, I had the choice. If i was going to extract the buttons from the ButtonBar, it probably would make sense to have them as a different type – Button for example. But reskinning my buttons as a different type could be time-consuming so I thought I’d see how I go just using ButtonBarButtons that aren’t in a ButtonBar!

All turned out fine, except that my labels weren’t appearing. A little delving into the code and I discovered the following code inside spark.components.supportClasses.ButtonBase:

// Push down to the part only if the label was explicitly set
if (_content !== undefined)
labelDisplay.text = label;

For my two cents, there’s something strange going on there… So to set the label, I need to put the text inside the label property, and i need to ensure that content is not undefined. Set content to something arbitrary and the label appears! weird…

<s:ButtonBarButton label=”Title” content=”nada”/>

iOS development with Swift - book: https://manning.com/books/ios-development-with-swift video course: https://www.manning.com/livevideo/ios-development-with-swift-lv

Tagged with: ,
Posted in Flex
One comment on “Frustrating Flex problems solved #5 – ButtonBarButton bugs
  1. JabbyPanda says:

    You could change the default layout specified in ButtonBarSkin.as file from ButtonBarHorizontalLayout to the some custom layout.

    For example, have a look at this implementation of Horizontal Multiline Layout by Max Kachurovskiy

    http://kachurovskiy.com/2010/horizontal-multiline-layout

Leave a Reply

Please log in using one of these methods to post your comment:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: