I'm trying to get a Spark Button skinClass to contain a custom component in a particular state. I'm trying to simply include a "Throbber" component in a button (to the left of the label) in the disabled state. In the other states, I'm utilizing the "icon" property of the button, but with this animated Throbber, I can't use the same property (because it doesn't appear - I think this has something to do with the BitmapImage type "icon" uses under the hood).
Here's the interesting part of my skin (note: the things I've not included is generated by Flash Builder and unchanged):
<!-- layer 8: text -->
<!--- @copy spark.components.supportClasses.ButtonBase#labelDisplay -->
<s:HGroup width="100%"
height="100%">
<mx:HBox id="throbberComponent"
includeIn="disabled"
height="20"
width="20">
<components:Throbber id="throbber"
left="5"
width="100%"
height="100%"
horizontalCenter="0"
verticalCenter="0"
lineThickness="1"
maxSteps="6"
skinClass="com.firlingcanada.components.ThrobberCirclesSkin"
autoStart="true"/>
</mx:HBox>
<s:Label id="labelDisplay"
textAlign="center"
maxDisplayedLines="1"
horizontalCenter="0" verticalCenter="0" verticalAlign="middle"
color.down="0x374f7f"
color.over="0x374f7f"
left="10" right="10" top="2" bottom="2">
</s:Label>
</s:HGroup>
So, I'm expecting that when I set the button to "disabled" that the button shows the Throbber component to the left of the label. I found the throbber code here: http://chris.firlingcanada.com/flexdevtips/flex4/throbber/srcview/index.html (credit to him for coming up with the spinner).
However, I'm seeing this instead. It's like the button is ONLY including the label in the layout, even though I have a new component there.
I've noticed that the documentation in Button.as says that the default size is the size of the label, but I can't figure out how to override it in this case to say "measure the custom component AND the label when calculating the size of the button".
Any help with this is greatly appreciated!!
HBoxwithHGroup. It's best not to mix and match MX and Spark components like that, especially when used in a layout – Josh Janusch Jan 29 at 23:38