image rendering library for AS3
je2050 produced a image rendering library for AS3 http://blog.je2050.de/?p=97 it is available through a swc
2 comments February 4th, 2007
je2050 produced a image rendering library for AS3 http://blog.je2050.de/?p=97 it is available through a swc
2 comments February 4th, 2007
SWFAddress is a small script that sits on top of SWFObject and provides deep linking for Flash websites and applications.
It enables the Back, Forward and Reload buttons of the browser and creates unique URLs with page titles that can be sent over email or IM.
http://www.asual.com/swfaddress/
Add comment February 4th, 2007
SWFObject is a small Javascript file used for embedding Macromedia Flash content.
http://blog.deconcept.com/swfobject/
Add comment January 25th, 2007
make flash and database search engine friendly and bookmarkable
http://www.sitepoint.com/article/accessible-flash-parts-1-2
makes the site degrade gracefully and search engine optimisation
http://blog.deconcept.com/2006/03/13/modern-approach-flash-seo/
http://www.jehochman.com/articles/seo-friendly-flash.shtml
http://www.seoconsultants.com/articles/2598/flash/
Add comment January 25th, 2007
Who needs Flex2 compiler to see the result of mxml and as3? No one because of this new online application that compiles as3 and mxml online. http://try.flex.org/
Add comment November 12th, 2006
Alex Uhlmann just released his MAX 2006 notes and also the source for a very nice flex transition effect. The effect uses the Sandy 3d engine in the background.http://weblogs.macromedia.com/auhlmann/archives/2006/
11/download_distor.cfm
Add comment November 12th, 2006
sephirot has made a firefox2 plugin that allows you to search the flex2/as3 dictionary from the firefox2 search. wicked!
http://www.sephiroth.it/weblog/archives/2006/11/create_a_flex2_
search_plugin_toolbar.php
Add comment November 9th, 2006
Adobe released a tutorial on how to use flex2 with AMFPHP
http://www.adobe.com/devnet/flex/articles/flex2_amfphp.html
Add comment September 19th, 2006
Andre Michelle is showing off his new physic engine. Empressing work!
http://blog.andre-michelle.com/2006/announcing-new-physics-engine-in-as3/
Add comment September 9th, 2006
/* ************************************************************ Developed by R.Arul Kumaran [arul@shockwave-india.com] * for more code keep visiting [www.shockwave-india.com/blog] * ************************************************************ */ /* Object.Clone creates a perfect copy of an object Modified from FlashGuru’s version to support Arrays */ Object.prototype.clone = function() { if (this instanceof Array) { var to = []; for (var i = 0; i< this.length; i++) { to[i] = (typeof (this[i]) == “object”) ? this[i].clone() : this[i]; } } else if (this instanceof XML || this instanceof MovieClip) { // can’t clone this so return null var to = null; trace(“Warning! Object.clone can not be used on MovieClip or XML objects”); } else { var to = {}; for (var i in this) { to[i] = (typeof (this[i]) == “object”) ? this[i].clone() : this[i]; } } return to; }; ASSetPropFlags(Object.prototype, [“clone”], 1); /* Usage:- myObject=new Object() myObject.name=”Arul”; myObject.gender=”Male”; myObject.age=29; copyObject=myObject.clone(); //now copyObject containes {name:”Arul”, gender:”Male”, age:29}; //changing myObject will not affect copyObject */
Add comment February 14th, 2006
| M | T | W | T | F | S | S |
|---|---|---|---|---|---|---|
| « Jun | ||||||
| 1 | 2 | 3 | 4 | |||
| 5 | 6 | 7 | 8 | 9 | 10 | 11 |
| 12 | 13 | 14 | 15 | 16 | 17 | 18 |
| 19 | 20 | 21 | 22 | 23 | 24 | 25 |
| 26 | 27 | 28 | 29 | 30 | 31 | |