Is there any way to put time interval of 4 to 5 second for displaying message or anything in my program. i am building a flex application.Any recommendations and suggestions are appreciated.
Printable View
Is there any way to put time interval of 4 to 5 second for displaying message or anything in my program. i am building a flex application.Any recommendations and suggestions are appreciated.
The order in which the events are dispatched by the application are preinitialize(), initialize(), creationComplete(), updateComplete() and applicationComplete().
The events in more detail:
- preinitialize() is dispatched when the component has been attached to its parent container, but before the component has been initialized, or any of its children have been created. In most cases, this event is dispatched too early for an application to use to configure a component.
- initialize() is dispatched when a component has finished its construction and its initialization properties have been set. At this point, all of the component’s immediate children have been created (they have at least dispatched their preinitialize() event), but they have not been laid out. Exactly when initialize events are dispatched depends on the container’s creation policy, as described later in this section.
- creationComplete() is dispatched when the component, and all of its child components, and all of their children, and so on have been created, laid out, and are visible.
- updateComplete() is dispatched every time the container or component characteristics are changed.
- applicationComplete() dispatches events after the Application has been initialized, processed by the LayoutManager and added to the display list. This is the last event dispatched during an application startup. It is later than the application’s creationComplete() event, which gets dispatched before the preloader has been removed and the application has been attached to the display list.
source : wietseveenstra.nl
If your application has no module then i want to know about .swf file size in kb of your application. Which included bin-debug folder in your project folder and give more information about file size in kb or mb.