adding event listener on Receive Button
There's something wrong here. Add event listener in button code? Is it custom button? Even if so, button should not process events - it should be a simple building block dispatching its own click events and not concerning with anything else.
What you really seem to need is notify one component of another's activity. You can just "use Parsley" like kyohiro suggests, or make your own connector, like this:
public class MessageBus extends EventDispatcher {
//singleton facility
private static _instance:MessageBus;
public static get instance():MessageBus {
if (!_instance) _instance = new MessageBus();
return _instance;
}
}
Then you use this MessageBus to add event listener to it (Panel2) and dispatch events through it (Panel1). This way Panel1 doesn't know about Panel2, they only know both MessageBus. So, to connect two components, you only need unique String constant for each event.
Receivebutton to watch for changes ofSendbutton breaks the fundamental rule of OOP. P.S: I always avoid to usebubblemechanism when possible. It's not good to manage code later. – Harry Ninh Nov 22 '11 at 3:20