Hi,everyone
I'm new to Flex.My question is how to dispatch event between components?As far as I know,Flex only bubbles event to itself or its parent.
I'm in such a situation:
<mx:Application>
<com:Component1 id="comp1" />
<com:Component2 id="comp2" />
</mx:Application>
In Component2.mxml I have two other components called A and B
I want comp1 to dispatch an Event with parameters,according to the parameters some changes could be made to A and B in comp2.How could I get the event in comp2?I know Cairngorm could make a difference,but I don't want to use it right now.Could anyone give me a hand?Much Thanks!
Best,Shuo