myEvtDisptchr.addEventListener(Event.TYPE, _onEvent_handler);
function _onEvent_handler($evt:Event):void{
dispatchEvent($evt.clone());
}
..you can just use the inherited function dispatchEvent:
myEvtDisptchr.addEventListener(Event.TYPE, dispatchEvent);you can also redirect an Event:
myEvtDisptchr.addEventListener(Event.TYPE, myOtherEvtDisptchr.dispatchEvent);Simple.


