Hi to All,

I'm looking to get the list of events really connected in a view.

For example:

        <mx:Canvas 
        xmlns:mx="http://www.adobe.com/2006/mxml";
        creationComplete="dispatchEvent (new Event
('myViewCreationCompleteHandler'))" >
        
                <mx:Button id="myButton" click="dispatchEvent (new Event
('myButtonClickHandler'))" />   

        </mx:Canvas>

So I would like to get 
[creationComplete , click] and [myViewCreationCompleteHandler ,
myButtonClickHandler]

In precedent version of actionscript I existed an attributes named
_listeners... but unfortunately this one has been deprecated...

Do you know if it exists a substitute?

Thanks in advance

Eric 

Reply via email to