HomeAbout

Reflection

Simple class for creating a reflection below any type of displayObject in AS3.

http://codycodingcowboy.cahlan.com/2007/01/reflection-class.html

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

Memo

Memoization in actionscript 3.

From wikipedia:

In computing, memoization is an optimization technique used primarily to speed up computer programs by storing the results of function calls for later reuse, rather than recomputing them at each invocation of the function.

http://blog.pettomato.com/?p=23

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

DistortImage

The fastest way to freely distort image with Flash in actionscript

http://sandy.media-box.net/blog/distortimage-20-the-fastest-way-to-freely-distort-image-with-flash-in-actionscript.html