Simple MVC with ActionScript 3 - An Updated Approach

March 9, 2010 :: 19 Comments

MVC Back in October of 2008, I wrote an article on implementing a simple MVC micro-architecture. Apparently it was well received, and is by far the page on my site that gets the most traffic (about 5 times the amount).

Well that was roughly 18 months ago, and since then I have started using a much more efficient, flexible, and low footprint implementation. The goals of the new framework were to build one that allowed components to be reused, created better separation of concerns, made the application structure more modular, and gave the developer the freedom to structure the app the way it worked best for that project.

View Full Post

A Beginners Resource Guide to Flex for Flash Developers

February 11, 2009 :: No Comments

FlexHaving been a Flash guy for many years, I was always reluctant to tackle the move to Flex. I saw it as something that was only good for super large, creativly dry, data-driven applications. I was of the mind set that for experience driven, creative masterpieces, like you often find in the advertising world, were only to be tackled using the Flash IDE.

Well, as with most of my hard-line opinions. I was wrong...

View Full Post

Adobe MAX 2008 - San Fran Here I Come

November 12, 2008 :: No Comments

This years Adobe MAX Conference will be held in San Francisco from November 16th to the 19th. With it less than a week away, lets just say I'm getting pretty stoked. This will be my first time attending MAX, and my first time attending any webdev conference period.

Adobe MAX Conference 2008

View Full Post

Simple MVC with ActionScript 3

October 20, 2008 :: 15 Comments

-------------------
UPDATED - I have posted a new approach to MVC which can be read here: Simple MVC with ActionScript 3 - An Updated Approach. I would still read this article first to get a good idea of this approach, but the new approach is better IMO. Read On......
-------------------

In my search for a framework to implement the MVC pattern in my AS3 projects I found many complex solutions. These solutions seem to be very robust, and are probably good to explore for very large RIA projects. In my case, working in the fast paced world of online advertising, I needed a solution that was a little more basic and flexible.

View Full Post