Tag Archives: Flex

Email Parser 邮件地址解析器, 从给定内容中抓取邮件地址&自动排除重复&过滤指定邮箱

功能介绍:

从给定的文字内容中 解析Email地址, 并显示出来. 同时支持QQ提取.

More…

Posted in ActionScript, Flex | Tagged , , , , | Leave a comment

[旧文存档]Flex: Alert 使用总结 Using Alert in Flex

1. 通过Alert强制用户选择.
2. 使用一个方法 Handle多个Alert.

// 弹出Alert
Alert.show(RM.getString(BUNDLE_ONLINE_TEST, "olt.attempt.warn.remove"), RM.getStr

More…

Posted in ActionScript, Flex | Tagged , | Leave a comment

Flex: 指定URL进行Debug

在需要使用外部JavaScript对Flex web app进行Debug时, 可指定预先修改好的HTML进行Deubug, 写了快2年AS代码了, 这几天才用到…图:

image

Posted in Flex | Tagged | Leave a comment

Flex: Setting Datagrid column percentWidth – 设置Datagrid 列宽度为百分比

需求: 设置DatagridColumn的Percent width

临时解决方法: 监听Datagrid的CREATION_COMPLETE事件, 在响应函数中重置Column的宽度.

效果: 参见http://cutown.com/home/reg.php, 网页内嵌入的Datagrid中, 后两列宽度为首列之外的宽度均分.

More…

Posted in ActionScript, Flex | Tagged , , , | Leave a comment

Using crossdomain.xml (Error #2048 Error #2170…) 使用crossdomain控制跨域访问

当试图与某站外URL的进行数据交互时 (如通过URLLoader), 如果目标站点无crossdomain.xml或该文件未允许当前站点的访问, 则会出现#2048, #2170等错误.

image
Cross-domain policy file specification (PDF, 129 KB)

More…

Posted in ActionScript, Flex | Tagged , , | Leave a comment