I have 2 skins, almost identical, but differ in 1 small way that can be accounted for if I could pass a Boolean to the skin while assigning it to the host component (a button).

<s:Button skinClass="MyBtnSkin" />

Is there a way while assigning the skin to the button, I could also pass a parameter to the skin somehow?

link|improve this question
feedback

1 Answer

up vote 5 down vote accepted

You have to create a Button subclass and add your custom boolean property in it.

<s:MyCustomButton skinClass"MyBtnSkin" customProperty="true" />

Updating your skin file when customProperty changes could be done with binding afterwards.

<Rect ... visible={hostComponent.customProperty}>
link|improve this answer
Doesn't he has to set that property as @bindable also? – Adam Kiss Apr 4 '10 at 16:40
[Bindable] yep. – Florian F Apr 5 '10 at 9:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.