推荐:Chrome下ActionScript API 搜索插件

A Chrome plugin for: ActionScript 3.0 Reference.Input “as3 + ‘space’” and keywords:
image
Flex Doc Team Blog 推荐: Chrome浏览器下AS文档的搜索插件, ‘as3 + 空格键’ 输入关键字后激发选项, 方便易用.
>>ActionScript 3.0 Search plugin homepage<<
 
This extension integrates with the Chrome

More…

by 老李 | Tagged , , | Leave a comment

Flex小工具: 匹配String

需求
分别有两列数据, A列作为数据源, B列中数据都来自于A列. 现在需要验证B列中的数据是否都能在A列中匹配到相同的数据.
image
工具地址
http://liguoliang.com/pub/utils/StringMatcher/StringMatcher.html
image
核心代码:

var sourceArray:Array = strSource.split(“\n”); // Get array from String;

/**
* Convert array to Map, array value as the key, and the total nuber of

More…

by 老李 | Tagged | Leave a comment

AIR Error: invalid application descriptor: Unknown namespace/ versionNumber must have a non-empty value.

Adobe AIR 最近一年升级火速, 去年1.5.3创建的Project使用高版本的SDK后会因为配置文件引发各类错误, 譬如:
Error1:  Namespace 1.5.3 in the application descriptor file should be equal or higher than the minimum version 2.6.0 required by Flex SDK.   
OK, 那替换1.5.3为2.6.0:
Process terminated without establishing connection

More…

by 老李 | Tagged , | Leave a comment

Oracle SQLs: Get system date; count user tables. etc,.

Get system date
select to_char(sysdate, ‘yyyy-mm-dd hh24:mi:ss’) from dual; — Get the formatted system date.
select sysdate from dual; — Get date
Count user tables:
SELECT OWNER,COUNT(*) FROM ALL_TABLES GROUP BY OWNER; — List all user and table number they own;

select count(*) from dba_tables t

More…

by 老李 | Tagged , | Leave a comment

注册Kindle/Kindle Touch,通过邮件Push书籍,并使用Kindle Personal Documents Service查看/下载/转发已发送的文件

近期朋友买了个Kindle Touch, 没有了物理键盘, 翻页速度也大大提高.(俺的Kindle 3 用了快一年了, 超值超给力!)
耐心解答了若干问题, 整理如下:
1. 为什么要注册?
When you register your Kindle, you’ll be able to purchase and download content easily.
除了方便买书之外, 可以通过Email推送书籍, 并且存储于Amazon服务器,日后可下载或发送至其他设备. 目前容量为5G.(参考:http://tinyurl.com/4ykaeo6 )
2. 如何注册?
You ca

More…

by 老李 | Tagged , , , | Leave a comment