gpt4 book ai didi

Flash 单选按钮 : how do I get the selected radiobutton?

转载 作者:行者123 更新时间:2023-12-04 06:29:59 25 4
gpt4 key购买 nike

我在同一组中拖放了一些单选按钮。在 main.as 中,我添加了单击事件监听器。

如何获得选定的单选按钮? handler 目标参数不包含对它的任何引用。

最佳答案

获取对当前 RadioButtonGroup 的引用并访问选择引用,这将返回对组中选定的当前单选按钮的引用。

http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/fl/controls/RadioButtonGroup.html

http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/fl/controls/RadioButton.html#group

var rbg:RadioButtonGroup = RadioButton(e.currentTarget).group;

var selectedRadioButton:RadioButton = rbg.selection;

//Get the group name
trace(selectedRadioButton.groupName);

或者,您可以将单选按钮放在复合 if 语句中,如下所示:
if(radioButton1.selected == true){

}else if (radioButton2.selected == true){

}

关于Flash 单选按钮 : how do I get the selected radiobutton?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5532035/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com