I'm trying to create a self contained help component for a small app I've written. It is a clickable image that opens a popup with the help information relevant to whatever page/section being viewed. The actual help information is passed to it when the help component (the image) is instantiated. Basically I can pop this single component in whever I want to add a help popup without changing anything else on the page (See code below).

My problem arises whenever the help component is in a viewstack and the view changes while the popup is open...nothing happens. I understand why (parent container never actually removed from stage), but I don't know quite how to work around it. I'm trying to figure out how to either close the popup or perhaps just replace the information contained within whenever the viewstack changes views.

Main help component. An clickable image that opens a popup.

<?xml version="1.0" encoding="utf-8"?>
<mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml">
    <mx:Script>
        <![CDATA[
            import mx.core.UIComponent;
            import mx.managers.PopUpManager;
            import mx.core.Application;

            private var _popup:HelpWindowComponent;
            public var helpComponent:UIComponent;

            private function openHelp():void
            {
                _popup = PopUpManager.createPopUp(Application.application as DisplayObject, HelpWindowComponent) as HelpWindowComponent;
                _popup.helpComponent = helpComponent;
                PopUpManager.centerPopUp(_popup);
            }
        ]]>
    </mx:Script>
    <mx:Image source="Views/Help/Components/assets/help24.png" click="openHelp();" useHandCursor="true" buttonMode="true" mouseChildren="false"/>
</mx:VBox>

The popup window.

<?xml version="1.0" encoding="utf-8"?>
<mx:TitleWindow xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" title="Help" showCloseButton="true" close="PopUpManager.removePopUp(this);">
<mx:Script>
    <![CDATA[
        import mx.core.UIComponent;
        import mx.managers.PopUpManager;

        public function set helpComponent(newComponent:UIComponent):void
        {
            content.removeAllChildren();
            content.addChild(newComponent);
        }
    ]]>
</mx:Script>
<mx:VBox width="100%" height="100%" borderStyle="inset" horizontalAlign="center" id="content"/>

</mx:TitleWindow>

The content of the popup window is set whenever the component is instantiated.

<mx:HBox width="95%" >
    <Help:HelpComponent helpComponent="{new HelpComponentForThisPage()}"/>
</mx:HBox>

Any ideas or suggestions on how to either close the popup or change the contents whenever the user goes to a different section of the main app?

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.