Flex Certification » Archive
Adobe’s Hero, The Flex Mobile Framework.
I am curious about Adobe’s Hero, Lately heard a lot about that as a mobile flex development framework. If any one has experience and view about this framework please comment and pont to the right tutorials and examples.
http://opensource.adobe.com/wiki/display/flexsdk/Hero
In brief about Adobe’s Hero, the Flex Continue Reading
Filed under: Featured
Flex 4 ACE Exam

Filed under: Flex Certification
Flex Certification Practice Exam

Filed under: Flex Questions
Adobe MAX 2010 October 23-27, Los Angeles, CA
Filed under: Featured
What is the Cost of Flex Certification?

Filed under: Flex Certification
Flex Certification eBooks
Here For those who do not like to buy expensive books, there are lot of ebooks which are free or available at a very low rates on the Internet which can be used to gain the required knowledge for flex certification.
Flex eBooks on Kindle Continue Reading
Filed under: Flex Books
Flex Certification Preparation – Day 2
Filed under: Featured, Flex Certification, Flex Questions
Flex Certification Preparation – Day 1

Filed under: Featured, Flex Certification
Flex Certification Book

Filed under: Flex Books
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