Open Source Media Framework (OSMF)
May 13, 2010 by jared
OSMF is a media framework by Adobe. Just as Flex has helped standardized RIA development, that’s what OSMF is to media, an AS3 framework to standardize the creation of media heavy experiences.
AS3 WYSIWYG Rich Text Editor
May 8, 2010 by jared
Fully featured bug free rich text editor, only 56KB, and in the spirit of open source. Built entirely on Flash components. If you’re willing to make it look prettier, I’ll be willing to post it here.
Free SWF Decompiler
May 8, 2010 by jared
This is probably the best swf decompiler for both AS2 and AS3 I’ve come across that’s free. You’ve got to do a quick sign up first.
HP SWFScan, a free tool developed by HP Web Security Research Group, will automatically find security vulnerabilities in applications built on the Flash platform.
We are offering SWFScan because:
- Our research shows that developers are increasingly implementing applications built on the Adobe Flash platform without the required security expertise.
- As a result, we are seeing a proliferation of insecure applications being deployed on the web.
- A vulnerable application built on the Flash platform widens your website’s attack surface creating more opportunity for malicious hackers.
- Decompiles applications built on the Adobe Flash platform to extract the ActionScript code and statically analyzes it to identify security issues such as information disclosure.
- Identifies and reports insecure programming and deployment practices and suggests solutions.
- Enables you to audit third party applications without requiring access to the source code.
Download this free tool to help your team find Flash vulnerabilities in your web applications.
Play MovieClip's in reverse!
May 28, 2009 by jared
Your gotoAndPlay replacement.
Flash AS3 Database Driven Dynamic XML Drag Drop Calendar
April 23, 2009 by jared
(Go ahead and create events in the read write version. Calendar resets every hour).
Easy to use
Great for embedding into websites. Modify it easily as a calendar extension to your CMS or customized email solution!
Requirements:
- Flash CS3 and onwards (and knowing what to do with it!)
- For database functionaily, PHP and MySQL enabled server
- Common sense
Features:
- No PHP, SQL, or ActionScript knowledge required.
- Compiled file size only 48Kb (varies with embedded fonts)
- Create, update, and delete events on the fly (not when using an XML file)
- Ultra fast performance
- Completely customizable including color, size, fonts, and graphics
- Can be used as an XML calendar as well. See the sample XML file.
- Insert unlimited events per day
- Drag and drop events around the calendar (not when using an XML file)
- Toggable “Read only” or “Read/write” access
- Easy to setup centralized Preferences file
- Clean, organized, readable code, great for learning
- Preloader included
- Priority support via a private forum
- Free life time upgrades
Easiest setup ever:
- Setup your database connections in a .php file
- Setup your calendar preferences in the .as file
- Compile / publish Calendar.fla
Date to Day Conversion
April 22, 2009 by jared
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 by jared
Thought I’d like to share this nice clean circle preloader. Simply tint to change the color.
CS4 Only: Using AdjustColor()
March 9, 2009 by jared
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 by jared
If ever you need a number to word converter.
Click here to download sample.
[via]
Adding Parameters to addEventListener
February 20, 2009 by jared
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);
}




