creationComplete( FlexEvent.CREATION_COMPLETE) is launched only when the component is created; this happens only once since you are reusing the same component. Listen to events added( Event.ADDED) or addedToStage( Event.ADDED_TO_STAGE) if you want to do something every time a display object is displayed.
source
share