I know that it is possible to get the selected value on the change handler or item click handler of a radioGroupButton. Like this:
protected function rb1_itemClickHandler(event:ItemClickEvent):void
{
var selectedValue:String=event.currentTarget.selectedValue.toString();
}
But what I need is the index of the selected value. Any idea how to do that?
Check out
event.indexlike in this example: