CRUD – Dynamic
Create, read, update and delete (CRUD) are the four basic functions of persistent storage.
Flex applications can communicate with server-side scripts for data functionality.
Any server-side technology can be used as long as the result format is known.
Returned XML data can easily be handled using E4X.
阅读全文»
在flex应用中,最多的就是如何读取外部xml,下面是一个简单的例子。
阅读全文»
最近有个问题困扰了我好久,就是在 flex 里面的好多控件有 tooltip 属性,如果将该属性的文字翻译成中文后会很难看,默认的字体很小,而且还是粗体,导致翻译后的汉字根本就看不清楚。还有就是使用 Validate 验证表单的时候,提示的信息字体也和这个效果一样难看。下面介绍一下解决方法:
通过修改style.css文件,添加
1
2
3
4
5
6
7
8
9
10
| ToolTip{
font-size: 12;
font-style: normal;
font-weight: normal;
}
ErrorTip{
font-size: 12;
font-style: normal;
font-weight: normal;
} |
然后在将<mx:Style source=”style.css”/>添加到到 application 页面下即可。