I have an <mx:Canvas>
as my ApplicationMainView.mxml, and am trying to access all current popups I have opened through it. Is there a way to do this outside of looking through every child view component manually?
My goal is to show the login view again at a certain point, but there are popups that will show over the login view and the user can still interact with. I want to try something roughly as follows:
ApplicationMainView.mxml
<mx:canvas>
<mx:VBox id="containerBox">
<!--all view stacks-->
</mx:VBox>
</mx:canvas>
AS3
for each(viewChild in containerBox){
if(viewChild.id != "myLoginView"){
viewChild.visible = false;
}
}