随笔分类 -  Flex

摘要:SOAP Response cannot be decoded. Raw response:是因为启用过Flex Builder的网络监视器的问题把网络监视器禁用后就正常了。.actionScriptProperties and set the propertyincludeNetmonSwc= false.http://www.webappsolution.com/wordpress/2010/10/06/flash-builder-network-monitor-project-property-causes-http-security-error/ 阅读全文
posted @ 2012-07-05 14:59 骨头 阅读(2598) 评论(0) 推荐(0)
摘要:package com.founder.tbm.components{ import org.osmf.layout.HorizontalAlign; import spark.components.Group; import spark.components.Label; import spark.components.SkinnableContainer; import spark.layouts.HorizontalLayout; public class ItemForm extends SkinnableContainer { public function ItemForm().. 阅读全文
posted @ 2011-11-24 20:26 骨头 阅读(2166) 评论(0) 推荐(0)
摘要:第一种方法 传值方式http://host:port/index.jsp#UserID=111//获取传递参数var browser:IBrowserManager=BrowserManager.getInstance();browser.init();var param:Object=URLUtil.stringToObject(browser.fragment, "&");我用这种方式在3.2下读不到,但4.0的SDK下是没有问题的第二种方法http://host:port/index.jsp?UserID=111为了保持一致性(我们项目中),我做了兼容,也支持 阅读全文
posted @ 2011-11-14 15:30 骨头 阅读(4764) 评论(0) 推荐(2)
摘要:1<s:RichTextid="textDisplay"2 textFlow=TextConverter.importToFlow(_text,TextConverter.TEXT_FIELD_HTML_FORMAT)3width="100%"4height="100%"5color="0x000000"6lineBreak="toFit"7fontSize="18"/>需要显示HTML时请使用 RichText 阅读全文
posted @ 2011-09-01 15:46 骨头 阅读(406) 评论(0) 推荐(0)
摘要:var dict : Object = new Object();for each(var obj: Object in updateList){ dict[obj.instCode] = obj;}var notice:PublicNoticeBaseVo=new PublicNoticeBaseVo();var checkInfo : String = "以上人员通过初审!"for(var str : String in dict){ var o:Object=new Object(); content += dict[str].name + ";" 阅读全文
posted @ 2011-03-16 14:17 骨头 阅读(761) 评论(0) 推荐(0)
摘要:package AddrList{ import flash.events.Event; import flash.events.MouseEvent; import mx.collections.ArrayCollection; import mx.controls.AdvancedDataGrid; import mx.controls.CheckBox; import mx.controls.advancedDataGridClasses.AdvancedDataGridGroupItemRenderer; public class AdvancedDataGridGroupItemRe 阅读全文
posted @ 2010-12-14 10:44 骨头 阅读(1115) 评论(1) 推荐(1)
摘要:<mx:AdvancedDataGrid id="dgTackRecord" width="2000" height="100%"> <mx:groupedColumns> <mx:AdvancedDataGridColumnGroup headerText="医学观察" textAlign="center"> &... 阅读全文
posted @ 2010-12-10 17:10 骨头 阅读(2491) 评论(0) 推荐(0)
摘要:非常感谢这们兄弟http://www.cnblogs.com/yansheng9988/archive/2009/06/10/1500742.html 阅读全文
posted @ 2010-07-06 17:44 骨头 阅读(6632) 评论(0) 推荐(0)
摘要:<root deptId="" deptName="请选择" parentId="" shortName="" > <node deptId="1" deptName="苏州市卫生局" parentId="0" parentName="" > <node deptId="12" deptName="宣传处" parentId="1" parentName="苏州市卫... 阅读全文
posted @ 2010-07-02 15:02 骨头 阅读(495) 评论(0) 推荐(0)
摘要:用于验证两个日期的大小。在Flex3 中自定义控件需要重写 override protected function doValidation(value:Object):Array 方法/** * @author * @date 2010-07-01 * @description 日期比较验证 */package com.xxxx.szecp.components.validator{ ... 阅读全文
posted @ 2010-07-02 14:59 骨头 阅读(1397) 评论(0) 推荐(1)
摘要:package { /** * * @author * @date 2010-6-23 * @description 拖动进度条 * @demo <ns:ProgressBarSlider id="pbs" * width="200" * value="50" * maximum="50" * minimum="0" *... 阅读全文
posted @ 2010-06-23 16:06 骨头 阅读(1105) 评论(0) 推荐(0)
摘要:flex CheckBoxList在实际使用中,是拿不到选中的值。-_-#! 阅读全文
posted @ 2010-06-11 16:41 骨头 阅读(1488) 评论(0) 推荐(1)
摘要:代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--/***@author *@date2010-6-2*@description多选控件*/packagecom.founder.szecp.components{importflash.events.... 阅读全文
posted @ 2010-06-07 16:30 骨头 阅读(2383) 评论(0) 推荐(1)