今天Debug碰到一个诡异的问题.
跑的好好的程序, 一Build就报错. 而且报错位置一直在Application的某一行, 雷打不动. 开始怀疑Build时动了Application, 增加了一个莫名其妙的字符什么的. 后来仔细排查, 原来是Application的Config xml文件中, 在Build时增加了一个{something}的字符.
估计是Flex当做这是一个Bindable的属性来处理了, 于是这行就是有错, 所以报错位置一直不变.
但MXMLC太不厚道了, 错误位置报的很清楚, 但错误文件只是写明了Application, 但问题是却是在Config xml中.
我顶你个肺.
从给定的文字内容中 解析Email地址, 并显示出来. 同时支持QQ提取.
1. 通过Alert强制用户选择.
2. 使用一个方法 Handle多个Alert.
// 弹出Alert Alert.show(RM.getString(BUNDLE_ONLINE_TEST, "olt.attempt.warn.remove"), RM.getString(BUNDLE_ONLINE_TEST, "olt.confirm.title"), Alert.YES|Alert.CANCEL, null, onAlertClose).data = "remove"; //----------------------统一响应--------------------------------- // onWarning Close private function onAlertClose(e:CloseEvent):void { if((e.target as Alert).data == "remove") { if(e.detail == Alert.YES) { ... }else { // do nothing } }else if((e.target as Alert).data == ALERT_ATTEMPT) { if(e.detail == Alert.YES) { ... } }else if((e.target as Alert).data == ALERT_GO_ON_ATTEMPT) { if(e.detail == Alert.YES) { ... } }else { throw new Error("无法识别的Alert关闭类型: " + e.toString()); } }
在需要使用外部JavaScript对Flex web app进行Debug时, 可指定预先修改好的HTML进行Deubug, 写了快2年AS代码了, 这几天才用到…图:
需求: 设置DatagridColumn的Percent width
临时解决方法: 监听Datagrid的CREATION_COMPLETE事件, 在响应函数中重置Column的宽度.
效果: 参见http://cutown.com/home/reg.php, 网页内嵌入的Datagrid中, 后两列宽度为首列之外的宽度均分.
// Proudly powered by Apache, PHP, MySQL, WordPress, Bootstrap, etc,.