vote up 1 vote down star

Hello friends. I want to load a mxml component from another mxml component in Flex. To be more specific, I have a Login mxml component that loads from my main Application file and a Overview mxml component. when a user clicks on some button from that Login component it should redirect to load Overview mxml component in place of Login component.

flag

5 Answers

vote up 0 vote down

Two components in the Application. Both 100% width/height. Make one visible and the other invisible. Repeat as needed. This is the basic principle of tabs and viewstacks.

link|flag
vote up 0 vote down

You can also do the same thing with states. When login is done, dispatch an event that you listen for in your application container. When that event fires, swap the state to show the next component/screen.

link|flag
vote up 0 vote down

Using states works for me most of the time. But if you do however want to keep the mxml files seperate, for development reasons or other, you can load your other mxml component using PopupManager.

You're main application file can popup the login window, and afterwards popup the overview window - but I'm not sure that this is what you actually want.

In any case, here is how to do that:

First import the function to your login mxml:

import mx.managers.PopUpManager;

And when you need to call the other mxml file:

PopUpManager.createPopUp(this, OverviewMXML, false);

In the OverviewMXML module, you can tell it to finish by adding to the title window the following:

close="PopUpManager.removePopUp(this)"

Or calling in when the user has logged in ofcourse.

link|flag
vote up 0 vote down

I'd use viewstack

<mx:ViewStack width="100%" height="100%" id="viewstack">
  <local:LoginControl/>
  <local:OverviewControl/>
</mx:ViewStack>

This will show login page by default. Set viewstack.selectedIndex = 1; in the click handler of the button to hide login control and display overview.

link|flag
vote up 0 vote down

or you can use addChild and removeChild to display and hide components when needed. or even include all of them in the application as mxml tags and use visible property to show/hide them

link|flag

Your Answer

Get an OpenID
or

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