Posted by: Yogesh Puri on: May 9, 2008
The lifecycle of component in flex is certainly somewhat similar to the old V2 framework where you create a component holder, craetechildren, set-sizes and dispatch events. Following four methods plays a role for component rendering
commitProperties()
measure()
layoutChrome()
updateDisplayList()
Here is what I found after doing some studies. The most of the following part is taken from Adobe flex help [...]
Posted by: Yogesh Puri on: April 30, 2008
I have been thinking to write on Access Modifiers in AS3. An access modifier is a modifier that changes the visibility of a class or its members. The actual use of access modifier depends upon the requirements as sometime these are used to encapsulate or hide information where as sometime you provide it for making [...]
Posted by: Yogesh Puri on: April 29, 2008
I have been working on a project where we need to send custom information or data to the listener object when a custom Event is going to be dispatched. So here is what i have done to achieve the same
The flash new Event mechanism provides you a facility to create a new event and the [...]
Recent Comments