How to load flex components using XML. The scenario is simple as like this, i need three buttons to appear in my panel, but the option true or false whether to appear should be in xml.
feedback
|
|
You're not exactly clear in your question, so I'll answer in two ways: 1. You need to have an external MXML In this case, you need to compile the XML file with mxmlc.exe (or just rename it to .mxml and include it in Flex Builder) and use the SWFLoader component to access the file. I don't have a lot of experience with SWFLoader, so I'll leave it up to you to look it up. 2. You need to set the properties of the components through an external XML Create a HTTPService, assign an ID to it, and use the url property to point it to your XML file. Do not assign a result format. Then, use the result event and point to a function that will execute when your XML is done loading. It should look like this:
Lets say myXml looks like this:
This is what your function Foo should look like. It will be executed when the HTTPServices finishes loading myXml.xml.
This function gets the result of service and assigns various buttons some properties as defined in the XML. Alternatively, you can also use service.lastResult to access the most recent result from anywhere in the script. Hope this helps! | ||||
|
feedback
|
|
Check out appcorelib for some nice XML manipulation tools for load static xml and converting xml to objects. | |||
|
feedback
|
|
//ActionScript code
// XML Info
// component
Thanks for your help Aethex. Now how come i would addevents to the menus in the popupButton. | |||
|
feedback
|
|
I'm not sure what you mean, but do you want to add event listeners to menus? In that case, just add:
Example:
Flex automatically passes the event into the menu12Clicked function as an argument. If you wanted to have multiple arguments, you would use:
I've no experience with PopUpButtons, but what you have in your code should work, although I assume that xmlDP points to the tag menu12. I'm also assuming that "@label" points to the label field defined inside the menu12. Personally, I like to nest my XML, so I wouldn't know what the "@label" is supposed to do. If you had the label nested inside the menu12 tag, you would use xmlDP.label. | |||
|
feedback
|