Multiple Cue Points in FLV = Multiple Listeners?

Hi all – quick (simple) question.
I’ve got an flv movie that displays within my flash document. It has multiple cue points that seem to work ok. I’d like to add one towards the end that fades out the movie, do I need another listener object for this? In other words: Is it necessary to attach multiple listener objects for completely seperate cue points? I’ve attached the code I use to fade out my movie clip here:


var vid:Object = new Object();
vid.cuePoint = function(cues){
this.onEnterFrame = fade;
}
vid.addEventListener("cuePoint",vid);

function fade();
this._alpha -= 5;
if(this._alpha < 1){
delete this.onEnterFrame;
}
}