Posts filed under 'code'

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

browser button controlling Flash

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 article

SWFObject is a small Javascript file used for embedding Macromedia Flash content.

  • can detect the Flash plug-in in all major web browsers (on Mac and PC)
  • designed to make embedding Flash movies as easy as possible
  • search engine friendly
  • degrades gracefully
  • can be used in valid HTML and XHTML 1.0 documents
  • forward compatible

http://blog.deconcept.com/swfobject/

Add comment January 25th, 2007

website SEO

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

Flex2 online compiler

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

Flex2 Distortion Effects

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

Firefox2 - AS3 API search

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

Flex2 and AMFPHP

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

AS3 physic engine

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

Object add on - clone

/*
************************************************************
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

Next Posts Previous Posts


Calendar

July 2010
M T W T F S S
« Jun    
 1234
567891011
12131415161718
19202122232425
262728293031  

Posts by Month

Posts by Category