im writting an actionScript class to handle my web service calls. When i retrieve a result i want to call a setter method in my main mxml application. My problem is that i dont know how to access the methods in the actionScript section of my main mxml class from my actionscript class, any ideas?
|
feedback
|
|
David is right -- while you can access the public members of your Application.mxml object statically and from anywhere in your application, design-wise that's a bit of a no-no. It's better to strive for loose coupling between your objects, and the way that's done in the Flex idiom is generally to extend EventDispatcher and to dispatch events. So for example, your WebService wrapper might look something like this:
... and your Main.mxml file like this:
In this case, the end result is the same -- completing the web-service load triggers the function in Main.mxml. But notice how Good luck! | |||
|
feedback
|
|
If your class is an UIComponent added to the component tree, then you can use its Adding such a call creates a rigid binding, though. You might want to consider dispatching an event instead, and handling this event in the main application. | |||
|
feedback
|
|
In case anyone has the same problem: mx.core.FlexGlobals.topLevelApplication.YOUR_FUNCTION is the syntax to access public functions within the main.mxml. | |||
|
feedback
|