I am using modules in flex , to build different parts of my webapp.
What I need now, is a way these modules can communicate with each other on events.
What really is happening is ,that there is a central module, which then will take care of loading other modules and passing data to and fro.
But , coding for each part to delegate events to each of these loaded modules from the central module and back would be a big nightmare.
What I really want to do is have a global event bus for it.
Are there any specific libraries , already existing for such a process.
Also, I would be using MVC , so it should also take care between events form the model to the view and vice-a-versa.
Read about MateMVC.
http://mate.asfusion.com/
This is the exact thing you would need to do to get a global event bus.