vote up 0 vote down star

When I click the button, it should popup my module, when i click outside it will hide or remove it. This is the code I have:

private var Showup:IFlexDisplayObject; 
Showup = PopUpManager.createPopUp(this, samplemodule, false);
Showup.addEventListener(FlexMouseEvent.MOUSE_DOWN_OUTSIDE, Removewindow); 

private function Removewindow(e:FlexMouseEvent):void
{
    PopUpManager.removePopUp(Showup);
}

My problem is, in samplemodule I have lot of buttons. When I click any button the corresponding module should load to middle portion.. but it does not load.

Please tell me the mistake or an alternative option!

flag

0% accept rate
I've reworded your question a bit, could you double check I've not accidently altered the meaning? – dbr Jul 6 at 17:48

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.