Observer patter Implementation in flex
{
public class Observe extends Observer
{
private var _handler:Function;
private var _source:Object;
override public function get handler():Function
{
return _handler;
}
public function set handler(value:Function):void
{
_handler = value;
if (value != null)
{
isHandlerInitialized = true;
if (isHandlerInitialized && isSourceInitialized)
{
callHandler();
} Continue Reading
Filed under: Misc
Ruby on Rails
What is Ruby?
Ruby is a scripting language, in the recent tradition of Perl, Python, and Tcl. It allows for a rapid development cycle and the rapid prototyping of applications. It is usually interpreted, requiring no compilation step.
Ruby is an open source object oriented programming language Continue Reading
Filed under: Misc
Adobe Flash 10.1 for Android

Filed under: Misc
Adobe AIR For Android

Filed under: Misc
Flex Drawbacks
1. There is no server-side component to ActionScript so you need to find a way to pass data between Flex and your backend, be it Java, .NET, PHP, etc. There are libraries out there to AMF remoting with just about any backend which makes it Continue Reading
Filed under: Misc
Adobe Flex coding standard

Filed under: Misc
Flex 4 Books

Product Description
Flex 4 is an open-source tool that allows developers to easily add life to web applications with dynamic user features, colorful transitions, and eye-catching animations. Flex also provides powerful data handling for industrial-strength applications.
We think it should be just as much Continue Reading
Filed under: Flex Books, Misc
Flex 4 in brief
Flex 4 – Useful Links
What’s new in Flex 4
The work on the Flex SDK has been focused around three primary themes:
- Design in Mind: providing a framework that supports a new degree of expressiveness, easily enabled with tools.
- Developer Productivity: improving compiler performance and adding productivity Continue Reading
Filed under: Misc
Flex 4 – BookMarks
Flex 4 – Useful Links
What’s new in Flex 4
Differences Between Flex 3 and Flex 4
Flex 4 Livedocs
Flex4 Examples (Peter DeHaan)
What’s New and Cool in Flex 4?
Flex 4 Overview (InsideRIA)
Flex 4 Overview Slides
Introduction to Flex 4 Skinning
Skinning Components and Applications in Flex 4 – Video
Skinning and Continue Reading
Filed under: Misc
Tour de Flex Updates for Flex 4!
New Flex 4 Control Samples:
New Layout Samples:
New FXG Graphics Samples:
New Effect Samples:
New Style Samples:
New Coding Techniques Samples
Details are at: http://devgirl.wordpress.com/2010/03/22/major-tour-de-flex-updates-for-flex-4/
Filed under: Misc