how to deselect all Radio Button in Radio ButtonGroup on button click in flash as3?
how to deselect all Radio Bu开发者_如何学JAVAtton in Radio Button Group on button click in flash as3?
loop on all button and unselect in a nutsheel you have to do something like this
var nbChildren = myDisplayObjectContainer.numchildren;
for(var i:int = 0 ; i < nbChildren ; i++){
if( myDisplayObjectContainer.getChildAt(i) is RadioButton )
{
var radioButton:RadioButton = myDisplayObjectContainer.getChildAt(i); as RadioButton;
radioButton.select = false;
}
}
Of course you have to use correct type instead of : RadioButton and your select/unselect method
精彩评论