Archive for 十二月, 2009

Cairngorm 3 lays the foundations for delivering successful Flex projects. It consists of:

Cairngorm 3 为开发成功的Flex工程做了三件基础工作

  1. Guidelines that describe our preferred client-side architecture; Guidelines 描述了首选的客户端架构
  2. Tools that help to ensure quality, consistency and efficiency when applying Cairngorm;  Tools 确保高质量、一致性、高效率的使用Cairngorm。
  3. Libraries that reduce code by solving recurring problems. Libraries 减少代码解决经常性的问题

Cairngorm Libraries Continue reading ‘Cairngorm 3 introduction 介绍’ »

代码高亮插件 的使用方法:见下面的链接

http://kpumuk.info/projects/wordpress-plugins/codecolorer/#supported_languages

支持几十种语言。actionscript actionscript3 当然也不在话下

费了点时间才搞清楚原来取得记录条数跟mysql有些不同。记录在此以备以后使用:

sqlStmt.text="select count(*) from "+ table.tableName;
sqlStmt.execute();
var totalRecords:Number=sqlStmt.getResult().data[0]["count(*)"];