リスナー関数の引数にデフォルト値nullを設定しておく。

function eventFunc(e:Event = null):void{
trace(e);//出力:null
}
eventFunc();