HomeAbout

Tweener

From the site:

Tweener is an animation and transition class. It’s what I use for creating dynamic animations via code, like button rollover states, fades, and other visual effects (and to avoid using the timeline for just about anything). And, although it obeys a slightly different syntax philosophy, it’s the spiritual successor to my MC Tween.

http://labs.zeh.com.br/blog/?page_id=97#tweener

LZW

From the site:

LZW is a static class that allows string compression using the Lempel-Ziv-Welch - or LZW - algorithm. It provides good compression with a fast engine that can have split iterations and is ideal to send large amounts of compressible data to a server, like the points that form an image.

http://labs.zeh.com.br/blog/?page_id=97#lzw

XT Depth Manager

From the site:

The XT DepthManager is an efficient relational manager. It eliminates the depth complexities from your code and maintains good performance, adding < 1.5 KB to the total size of your SWF.

http://codext.com/code/6

Keyboard navigation manager

Fromt he site:

This is a utility class i wrote a while back to give objects on the stage keyboard functionality. It’s very easy to use. You instantiate an instance of the class and then add items to it with the addItem() method. This method takes three parameters : column, row, and item. After you’ve added the item, you don’t have to worry about anything else really, the manager takes care of all the logic for you

http://blog.3r1c.net/?p=29

MusicBuilder & SoundObject

Set of classes that allow you to build your own music with multiple streaming mp3 sound files.
With a brand new Timer class that calculates elapsed time to the millisecond, you can now have seamless looping of streaming MP3 files.

The classes are :
- MusicBuilder
- SoundObject
- SOCollection
- Timer

http://lab.daroost.ca/2007/02/25/sondloop2-revisited-musicbuilder-soundobject/

AnimationPackage 2

From the site:

AnimationPackage helps you to create powerful, maintainable animations and primitive shapes in an efficient and easy way. At the same time it keeps your file size down because many parts of it are reused and only the classes you need are imported to your project. AnimationPackage 2 is an ActionScript 2.0 library and it is compatible to Flash Player 8 and above.

http://www.alex-uhlmann.de/flash/animationpackage/ap2

Note: Animation Package 1 is also available for Flash Players 6 and above. Get it here.

LoadQueueManager

From the site:

The Load Queue Manager Class is a development based on other prior developments for managing the loading of multiple external assets into a base movie.

Assets are registered with the Load Queue Manager Class which will progress through the existing queue until all registered assets are loaded.

http://blog.bittube.com/downloads/

FullBrowser

From the site:

I needed to create an application that maintained a constant background, even if the window was resized to whatever the resolution could be. We’ve all learned how to do it, it was just one of those things that I got sick of relearning every time.
I wrote a simple class to handle a few different types of full screen/browser applications called FullBrowser. To use it, you initialize the class, pass in the reference to the stage and whatever content you want centered, and then call the setFill method, which allows you to pass either “Solid” (followed by a color [ex: "0x335599"]), “Gradient” (followed by two colors [ex: "0x000000", "0x220033"]), or “Bitmap” (followed by the linkage id to the bitmap in the library).

http://codycodingcowboy.cahlan.com/2007/01/simple-fullbrowser-class-in.html

ASCrypt3

From the site:

This is an ActionScript 3 port of the ASCrypt ActionSCript 2 component available at http://www.meychi.com/archive/000031.php .

It is a group of various Encryption and encoding Algorithms, including:

Base64
Base8
Goald
GUID
MD5
RC4
Rijndael
ROT13
SHA1
TEA
LZW

BitmapExporter

From the site:

I have written a BitmapExporter class which allows to save PNGs or JPEGs out of swf files. There have been some Flash 8 demos already that show this possibility, so the novelty factors of my class are that the images get compressed before they are sent to the server and that Flash remoting is used to transfer the data.

http://www.quasimondo.com/archives/000572.php