Flash Builder 4.6中的动态单选按钮 - 如何使其成为多行?

时间:2012-01-10 11:14:43

标签: flash flex radio-button

我正在为移动设备制作测验应用程序。问题来自xml。 我怎样才能制作多线Radiobuttons?我试图做一个skinclass但它没有用。 在这段代码中我制作了RadioButtons。

enterfor (j=0; j<arrAnswers[index].length; j++) {
            arrChoices[j] = new RadioButton()

            arrChoices[j].label = arrAnswers[index][j];
            arrChoices[j].value = j;
            arrChoices[j].width = qField.width;
            arrChoices[j].x = qField.x + 10;
            arrChoices[j].y = qField.y + qHeight + (aHeight+5)*j;
            arrChoices[j].group = rbg

            container.addElement(arrChoices[j]);

        } code here

1 个答案:

答案 0 :(得分:0)

参考以下链接:
http://blog.flexexamples.com/2010/04/10/creating-a-multiline-spark-radiobutton-control-in-flex-4/
http://blogs.adobe.com/aharui/2007/04/multiline_buttons.html
blogs.adobe.com下载代码并使用您的自定义单选按钮

var radiobtn:MultilineRadioButton=new MultilineRadioButton();