I should probably clarify a bit.

You could create your own creationComplete flag.

private var thisComponentIsComplete:Boolean = false;

then set it in your creationComplete event handler

private function onCreationComplete():void
{
    thisComponentIsComplete = true;
}


--- In flexcoders@yahoogroups.com, "valdhor" <valdhorli...@...> wrote:
>
> If it has already fired then your event handler will have run.
> 
> 
> --- In flexcoders@yahoogroups.com, "dfalling" <dfalling@> wrote:
> >
> > Is there a publicly-exposed property on components that can be inspected to 
> > determine if they have finished creation yet?  I know I can listen for 
> > creationComplete, but what can I do if it may have already been fired?
> >
>


Reply via email to