Hi, I have a flex application that has a global toolbar in the top and various tabs in the bottom, like firefox or any tabbed app. In each tab I have different forms with different information. For each form I have a model that stores the information.
In the toolbar I have buttons for save, new, delete. The question is how do I get the model that I have to save or delete, when every model is in a different tab, without putting a model for each form inside my ModelLocator as I don't want to have 10-15 models inside my ModelLocator. This is my first Flex application so I'm new to the technology, I have more experience in Java. Thanks

