I don't see that as a constant for event. I see Event.ADDED, but that still gets me null. I'm thinking its because its added to its parent before its parent is added to the display list.
EDIT: Ok, I did find a solution.....not sure if it's the best solution though:
PHP Code:
public function MyComponent(){
this.addEventListener(FlexEvent.CREATION_COMPLETE, creationCompleteHandler);
}
private function init():void{
trace(this.stage);
}
private function creationCompleteHandler(evt:FlexEvent):void{
this.callLater(init);
}