hello i have this buttonbar:
<s:ButtonBar id="channelsBtnBar" requireSelection="true" width="100%" horizontalCenter="0"
skinClass="skins.TvButtonBarSkin"
change="channelsBtnBar_changeHandler(event)">
<s:dataProvider>
<s:ArrayList>
<fx:Object icon="@Embed('assets/ch1.png')"/>
<fx:Object icon="@Embed('assets/ch2.png')"/>
<fx:Object icon="@Embed('assets/ch3.png')"/>
<fx:Object icon="@Embed('assets/ch4.png')"/>
<fx:Object icon="@Embed('assets/ch5.png')"/>
<fx:Object icon="@Embed('assets/ch6.png')"/>
<fx:Object icon="@Embed('assets/ch7.png')"/>
<fx:Object icon="@Embed('assets/ch8.png')"/>
<fx:Object icon="@Embed('assets/ch9.png')"/>
</s:ArrayList>
</s:dataProvider>
</s:ButtonBar>
how can i have in creationcomplete of the parent component any of the items selected? is this possible without setting requireSelection to false and selectedItem to -1?