as3游戏类库
Flixel is an open source game-making library that is completely free for personal or commercial use. Written entirely in Actionscript 3, and designed to be used with free development tools, Flixel is easy to learn, extend and customize.
as3游戏类库
Flixel is an open source game-making library that is completely free for personal or commercial use. Written entirely in Actionscript 3, and designed to be used with free development tools, Flixel is easy to learn, extend and customize.
人脸识别的AS3类库
官方网站:http://www.beyond-reality-face.com
用于如下网站:
http://nike.jp/nikefree/freeface/
http://stride.qq.com
问题描述:
jacky今天show给我看一个Flash网站(Flash 10.0.0 发布):
http://home.ashley.com.cn/
结果鼠标中键不能用(Mac OSX 10.8.2,Safari 6.0.1)
问题解决:
Adboe实际上已经解决了这个问题,在10.0.42.34版本以及以上版本中。
但是jacky那边不能用高版本发布,所以还有一个替代方案:
http://blogs.adobe.com/cantrell/archives/2009/03/make_the_mouse.html
http://www.robotlegs.org/
Robotlegs is a pure AS3 micro-architecture (framework) with a light footprint and limited scope. Simply put, Robotlegs is there to help you wire your objects together. It provides the glue that your application needs to easily function in a decoupled way. Through the use of automated metadata based dependency injection Robotlegs removes boilerplate code in an application. By promoting loose coupling and avoiding the use of Singletons and statics in the framework Robotlegs can help you write code that is highlytestable.
运用依赖注入在MVC框架下,实现了依赖自动化,确实很方便。
中文教程:https://github.com/robotlegs/robotlegs-documentation/blob/master/best-practices-zh-cn.textile
IN2AR is an Adobe Flash AS3 Library that allows you to detect images and estimate their pose using standard webcams/cameras. The pose information can be used to place 3D objects and/or videos onto the image and create wonderfull Augmented Reality applications, or to createunique games that can be controlled by movements of your image.
问题描述:今天加班帮惠氏Wyeth启斌illuma抽奖AIR。在Mac下开发完去PC上测试,发现Mac上一切正常,而PC上程序无法顺利运行。
问题分析:把源代码转到PC运行,一步一步排查。发现PC上会加载隐藏文件,而Mac上不会加载隐藏文件。正是这些隐藏文件的加载导致不正常。
问题解决:
添加如下代码:
if(!file.isHidden)
一切OK了。
总结:Mac系统会忽略隐藏文件,与PC上会遍历所有文件不同。这也许是AIR的bug。
问题描述:前些日子Vision部在给Timberland做年会用的年度报表应用软件。因为需要用在Mac和PC平台,所以使用AIR平台开发。因为一直在PC中开发,所以PC一切正常,但是到了Mac中就回报错。
问题分析:那天正好是Adobe Suite CS5.5发布会,回来后加了个通宵,帮Cailven解决这个bug。因为报错是报的类库中,一直在类库中找寻解决办法。搞了一个晚上,突然发现AIR返回的path不一样。
问题解决:
把如下代码:
var path : String = file.nativePath;
改写为:
var path : String = file.url;
一切OK了。
总结:file.nativePat对于Mac是不适用的,请使用file.url代替。这也许是AIR的bug。
最近公司里在做Timberland的一个内部使用的数据分析软件,AIR的,需要读excel,找了点读xlsx的类库,最后选择Rxlsx。一个是比较新,一个是支持office2007格式。
老外写的类库:http://code.google.com/p/as3xls/
国人写的类库:http://code.google.com/p/rxlsx/
问题描述:最近做AMG多触点程序,遇到flash全屏后文本框不能输入问题。flash10,用swf全屏后可以输入;用exe全屏后不能输入。air2,用exe全屏可以输入。
问题解决:Google了下:
在全屏模式下,用户无法在文本输入字段中输入文本。所有键盘输入和键盘相关的 ActionScript 在全屏模式下均会被禁用,但将应用程序返回标准模式的键盘快捷键(例如按 Esc)除外。
http://livedocs.adobe.com/flash/9.0_cn/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Parts&file=00000352.html