flex学习笔记

1.项目组件化。选择并创建一个MXML Component组件文件,可以把每个组件独立出来。

2.项目模块化。选择并创建一个MXML Module模块文件。

3.文本的控件Lable和Text。Text的text和htmlText属性

4.TextInput.TextArea

5.<s:Button label="按钮"  click="button1_clickHandler(event)"/>

protected function button1_clickHandler(event:MouseEvent):void
   {
    // TODO Auto-generated method stub
   }

7.RadioButton  CheckBox  PopUpButton  LinkButton

原文地址:https://www.cnblogs.com/1000pen/p/2743522.html