I'm transitioning a flex 3 application to flex 4. There was AS code in the flex 3 app that worked:

var myCurrentSelectedChild:String = myViewStack.selectedChild.id;

Now, in flash builder and flex 4.5, it throws the error - "-1119: Access of possibly undefined property id through a reference with static type mx.core:INavigatorContent". I'm trying to get the viewStack's selected child's id.

link|improve this question

try to cast the myViewStack.selectedChild to some displayObject type. core:INavigatorContent has no ID property. So use (myViewStack.selectedChild as DisplayObject).id – Adrian Pirvulescu May 27 '11 at 8:29
@TiMeister DisplayObject doesn't have ID property but Container does so used (myViewStack.selectedChild as Container).id and it works. Thanks – Steven May 27 '11 at 15:15
Sorry I wanted to type UIComponent – Adrian Pirvulescu May 27 '11 at 16:12
feedback

3 Answers

up vote 1 down vote accepted

Try to cast the myViewStack.selectedChild to some UI Object type. core:INavigatorContent has no ID property.

So use:

(myViewStack.selectedChild as Container).id
link|improve this answer
feedback
var myCurrentSelectedChild:String = myViewStack.selectedChild.getChildAt(0).id;
link|improve this answer
selectedChild doesn't have getChildAt method – Steven May 27 '11 at 15:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.