If I have an custom event on my class called "transitionIn" like this:
<mx:MyComponent transitionIn="myTransition" /> <mx:Move id="myTransition" /> And it points to an event called, "myTransition", In MyComponent I have: /** * Transition in effect */ [Event(name="transitionIn", type="mx.core.events.Event")] Is there a way to get a reference to myTransition from within MyComponent? I want to keep the property, "transitionIn" an event.

