1) preInitialize: This event is raised when the component has just been created but none of the child components exist.
2) initialize: This event is raised after the component and all its children have been created but before any dimensions have been calculated.
3) creationComplete: This even is dispatched after all the component and its children have been created and after all the layout calculations have been performed.
4) applicationComplete: Dispatched after all the components of an application have been successfully created
My Questions Here
Lets suppose i create a button component, what are the child components then? Can anyone explain me in depth on the Child components of a component.
Can anyone show me an example of code, where a component is a created.. i mean a custom component from scratch.