http://www.rubenswieringa.com/blog/flex-book-component-beta
http://pageflip.hu/
Month: April 2010
rpg maker, visual novel engine
embed xml
[sourcecode language=”actionscript3″]
[Embed(source="info.xml", mimeType="application/octet-stream")]
protected var EmbeddedXML:Class;
var ba : ByteArray = (new EmbeddedXML()) as ByteArray;
var s : String = ba.readUTFBytes( ba.length );
xml = new XML( s );
[/sourcecode]
forum 講寫 game,都會講 as3
Understanding how a TriangleMesh3D works
How away3D 解決 Z-order Problem
a blog of designer and adv. flash
MVC, pls learn this 好快睇曬
KitchenSync
http://kitchensync.as3lib.org/
an ActionScript 3.0 library for sequencing animations and other time-based actions.
Embed Almost Anything in Your SWF
a programmer blog
swf 是自己還是載入?
if(this.parent == stage);
(一日未 add child ,呢招都唔 work)
if (this.stage != null) {
}
but this work
load 入去個個,個 stage 會變左 null =.=
FlashDevelop vs Flex Builder vs Flash
some great flash lib
http://blog.everythingflex.com/as3-libraries/
識得整 pdf!
http://code.google.com/p/as3corelib/
有用既 code library
Box2D, a physics engine for Flash
少有既 flash game framework
graffiti framework
Papervision3D – Camera Perspective Change
[code lang=”actionScript3″]// To increase perspective set the camera close and reduce the zoom
camera.z = -600;
camera.zoom = 40;
// To decrease perspective set the camera far and increase zoom.
camera.z = -1510;
camera.zoom = 180;[/code]