03 2007 档案

posted @ 2007-03-29 13:56 fishert 阅读(131) | 评论 (0) 编辑
posted @ 2007-03-26 13:31 fishert 阅读(27) | 评论 (0) 编辑
posted @ 2007-03-22 20:34 fishert 阅读(24) | 评论 (0) 编辑
posted @ 2007-03-22 20:00 fishert 阅读(26) | 评论 (0) 编辑
posted @ 2007-03-16 15:35 fishert 阅读(1845) | 评论 (6) 编辑
摘要: 网络故障以某种症状表现出来,故障症状包括一般性的(象用户不能接入某个服务器)和较 特殊的(如路由器不在路由表中)。对每一个症状使用特定的故障诊断工具和方法都能查找 出一个或多个故障原因。一般故障排除模式如下: 阅读全文
posted @ 2007-03-02 23:08 fishert 阅读(104) | 评论 (0) 编辑
摘要: 看到"Ruby"这个词,习惯地去网上搜搜看,what's this?
先开个小头,以后有空时再研究下。阅读全文
posted @ 2007-03-02 15:53 fishert 阅读(46) | 评论 (2) 编辑
posted @ 2007-03-02 13:08 fishert 阅读(35) | 评论 (0) 编辑
摘要: 自己翻译的Cairngorm Part 6阅读全文
posted @ 2007-03-02 11:19 fishert 阅读(753) | 评论 (0) 编辑
摘要: 原因:新的Flashplayer9.0去掉了调试功能
解决:
1.下载uninstallflashplayer,调试版的player for IE,player for other,执行文件
2.依次运行,将执行文件放在Flex2/player/debuger下
3.文件类型swf指向该执行文件阅读全文
posted @ 2007-03-02 11:12 fishert 阅读(468) | 评论 (0) 编辑
摘要: 主要原因是:Flash player对中文的支持不好(国外的东西啊-_-!)阅读全文
posted @ 2007-03-02 10:49 fishert 阅读(912) | 评论 (0) 编辑
摘要: 来源:http://www.riachina.com/showthread.asp?page=end&threadid=5179

Flex2环境下有点小错误,改正了一下,可行阅读全文
posted @ 2007-03-02 10:49 fishert 阅读(117) | 评论 (0) 编辑
摘要: 设置DataGrid的enable为false并不能使DataGrid变灰阅读全文
posted @ 2007-03-02 10:47 fishert 阅读(104) | 评论 (0) 编辑
摘要: SQL安装时出现“以前的某个程序安装已在安装计算机上创建挂起的文件操作……”
阅读全文
posted @ 2007-03-02 10:47 fishert 阅读(1052) | 评论 (0) 编辑
摘要: 原因:由于工程创建后有些路径已经用绝对路径确定,移用到不同环境下需要修改
主要修改的地方:
1. 右击工程->Properties->Flex Build Path->Library Path下
2. 右击工程->Properties->Flex Compiler下阅读全文
posted @ 2007-03-02 10:46 fishert 阅读(70) | 评论 (0) 编辑
摘要: 1.右击css文件->compile css to swf
2.想要动态换css时 StyleManager.loadStyleDeclarations("css/applicationCss1.swf",true);阅读全文
posted @ 2007-03-02 10:40 fishert 阅读(155) | 评论 (0) 编辑
摘要: /////////总结/////////////
1. validateNow();//组件立即更新
2.自定义的组件使用就像对象一样 import进来,再新建对象或是用标签阅读全文
posted @ 2007-03-02 10:39 fishert 阅读(202) | 评论 (0) 编辑
摘要: 使用Validator的一个例子阅读全文
posted @ 2007-03-02 10:38 fishert 阅读(135) | 评论 (1) 编辑
摘要: 总结
1.新建自定义的NameValidator继承Validator,并重写doValidation(),将自定义的方法加入到此函数中去
2.不允许空的错误提示可用requiredFieldError属性
3.中有required属性,设置为true则出现"*"阅读全文
posted @ 2007-03-02 10:36 fishert 阅读(378) | 评论 (0) 编辑
摘要: 总结
1.用将XML加载进来,加载完成时触发Result事件,将tree.dataProvider绑定
2.在AS中动态加载可使用URLLoader阅读全文
posted @ 2007-03-02 10:29 fishert 阅读(177) | 评论 (0) 编辑
摘要: 总结
1.用到URLLoader和URLRequest,加载完成时触发COMPLETE事件,在处理函数中绑定到Tree上阅读全文
posted @ 2007-03-02 10:27 fishert 阅读(363) | 评论 (0) 编辑
摘要: 先来看Flex调用JavaScript中的函数阅读全文
posted @ 2007-03-02 10:21 fishert 阅读(251) | 评论 (0) 编辑
摘要: 来看JavaScript调用flex中的函数阅读全文
posted @ 2007-03-02 10:12 fishert 阅读(610) | 评论 (1) 编辑
摘要: Remoting Object一共有两个属性:source和stateful阅读全文
posted @ 2007-03-02 10:07 fishert 阅读(229) | 评论 (0) 编辑
posted @ 2007-03-02 10:06 fishert 阅读(59) | 评论 (0) 编辑
摘要: 1.文件名 大写开头 Main.mxml
2.类名 大写打头 CustomEdit.as
3.控件 简写+名称 阅读全文
posted @ 2007-03-02 10:03 fishert 阅读(278) | 评论 (0) 编辑
摘要: 比如 其中product是自定义的属性,select为自定义的事件
在ProductList.mxml中阅读全文
posted @ 2007-03-02 10:01 fishert 阅读(2239) | 评论 (1) 编辑
摘要: 一种水平的List,可用于展示图片,而 则是竖直的List,像表格式的List,自己确定列数
也会是常用到的那种,各种Bar与的结合可生成导航效果
选择日期阅读全文
posted @ 2007-03-02 09:56 fishert 阅读(1283) | 评论 (0) 编辑
摘要: 使用rs.next()提示"Unhandled exception type SQLException"阅读全文
posted @ 2007-03-02 09:54 fishert 阅读(225) | 评论 (0) 编辑