FLEX/SELECTBOX

下拉菜单赋值

[Bindable]

private var subjectDataProvider:ArrayCollection = new ArrayCollection([
{label:"Standard",data:1},
{label:"Clock",data:2}

]) 

<mx:HBox width="100%" height="100%">
<mx:ComboBox id="subject" width="150" labelField="label" dataProvider="{subjectDataProvider}"  prompt="" />
</mx:HBox>


取出ArrayCollection中某字段的值

 tempList = httpData.getDataToArrayCollection("TEMP_LIST");

 save_interval.text = tempList[0]["save_interval"];  //第一行的save_interval字段的值


下拉菜单根据指定的值被选中

subject.selectedindex = 1;

相关文章

一:display:flex布局display:flex是一种布局方式。它即可以...
1. flex设置元素垂直居中对齐在之前的一篇文章中记载过如何...
移动端开发知识点pc端软件和移动端apppc端软件是什么,有哪些...
最近挺忙的,准备考试,还有其他的事,没时间研究东西,快周...
display:flex;把容器设置为弹性盒模型(设置为弹性盒模型之后...
我在网页上运行了一个Flex应用程序,我想使用Command←组合键...