Date to Day Conversion
April 22, 2009
Here is a Date helper class that
- converts a date to a day
- finds out the number of days in a month
Have fun deciphering this one.
Click here to download the sample files.
Circle Preloader
March 9, 2009
Thought I’d like to share this nice clean circle preloader. Simply tint to change the color.
CS4 Only: Using AdjustColor()
March 9, 2009
Flash 10 only: the AdjustColor class allows you to modify brightness, hue, saturation, and contrast without using a ColorMatrix.
Click here to download the sample files.
AS3 Convert Number to Word Spelling
February 26, 2009
If ever you need a number to word converter.
Click here to download sample.
[via]
Adding Parameters to addEventListener
February 20, 2009
Here’s how you can easily add parameters to an event listener in AS3.
stage.addEventListener(MouseEvent.CLICK,
function(e : MouseEvent) : void
{
fMyFunction(e, "hello world")
},
false , 0 , false);
function fMyFunction(e : MouseEvent, vMsg:String) : void
{
trace(vMsg);
}



