- eBay Auction Shopping Alt
- Credit Cards
- Best deals, discount prices
- Rencontre
- Casual Fashion from Uniqlo
- Jobs
- Run your car on only tap water
- Annonce auto gratuite
- Cell Phones
QueueLoader - AS2
From the site:
I’ve written a helper class for loading and monitoring resources which is based upon an AS3 library called Queueloader located at Google Code. My version is written in AS2 and has the following features:
Individual monitoring
Overall queue monitoring
Image loading
SWF loading
MP3 loading
TweenMax
TweenMax builds on top of the TweenLite core class and its big brother, TweenFilterLite, to round out the tweening family with popular (though not essential) features like bezier tweening, pause/resume capabilities, easier sequencing, hex color tweening, and more. TweenMax uses the same easy-to-learn syntax as its siblings. In fact, since it extends them, TweenMax can do anything TweenLite and/or TweenFilterLite can do, plus more. It also introduces an innovative feature called “bezierThrough” that allows you to define points through which you want the bezier curve to travel (instead of normal control points that simply attract the curve). Or use regular bezier curves - whichever you prefer. There are interactive samples at the site (AS2 and AS3 versions):
CANDYDIMENSION - Package Of 3D Classes - ActionScript 2
Hi!
I have upload some code on Google code. It is written in AS2 and i think it is really easy to use. No comment and docs but i have provide some samples. If you wanna take a look here it is:
http://candymandesign.blogspot.com/2008/01/candydimension-v10.html
You will be able to build basic 3d space - cubes, spirals, basic material mapping, change the depths, scale, color transformations… Nothing like Papervision or Sandy - not that complex - but think it is easier to use.
Best!
Mirko
Particles
From the site:
Particles is a class that manages simple MovieClip motion. Obviously by it’s name it can be used to create particles such as falling snow, leaves or anything else. And the MovieClips don’t have to fall. They can also float up.
 http://polygeek.com/452_adobeflash/actionscript_particlesÂ
Swinger
Swing a movieclip on an axis point.http://pixelfumes.blogspot.com/2008/01/swinger-class-with-source.htmlÂ
MouseControl
From the site:
MouseControl class for now just takes care of Mouse scroll wheel capability in Flash MouseControl is Singleton class which lets you define movieclips and functions that should be invoked if user uses mouse scroll wheel over defined movie clip.Â
 http://mrsteel.wordpress.com/2008/01/27/373/Â
XMLConduit
From the site:
Here is a simple class that allows you to use POST and GET to return XML data from a URL (budget webservice). It works really well, you can just extend it by adding your own required methods, or you could set it up with one generic method that supplies the event type, etc. and you could send it an object with properties instead of specific arguments (so you could loop through and inspect them). Â
http://www.ericd.net/2007/11/as2-class-xmlconduit.htmlÂ
CollisionDetection
From the site:
The com.gskinner.sprites.CollisionDetection class is really simple to work with, there is a single static method called checkForCollision with four parameters:
checkForCollision(movieClip1,movieClip2,alphaTolerance);
movieClip1, movieClip2 - The MovieClip instances to check for collision.
alphaTolerance - a number from 0 to 255 that specifies the transparency tolerance when testing the collision. A higher number will increase the tolerance (ie. allow more transparent parts of the MovieClip to register collisions). Defaults to 255.
Returns a Rectangle object specifying the intersection of the two MovieClips in the _root coordinate space, or null if they do not intersect.
http://www.gskinner.com/blog/archives/2005/10/source_code_sha.html
FLVFetcher
Download youtube and google video flv’s directly into flash.
http://www.visible-form.com/blog/flvfetcher-directly-download-youtube-and-google-flvs-into-flash/
TextMetrics
From the site:
Have you ever needed to find out where the line breaks occur in a dynamic TextField? How about the precise x/y coordinates of a particular phrase/string along with its width & height so that you could highlight it somehow? Or maybe the width of each line of text? That’s all possible with the gs.utils.text.TextMetrics class. And to be consistent with the getTextLineMetrics() function in the TextField AS3 class, it also returns the descent, ascent, and leading values too. You must publish to Flash 8 or later for accurate results.