Cue Points

I am trying to set multiple cuepoints on an flv. I have been using the actionscript method and have managed to get one event to work, however I need 3 different cue points to load in 3 different movieclips. At the moment all tree appear at the same time on the first cue point.This is the basic script:

[FONT=“Courier”]print_mc._visible = false;
online_mc._visible = false;
other_mc._visible = false;

var listenerObject1:Object = new Object();
listenerObject1.cuePoint = function(eventObject:Object):Void {
print_mc._visible = true;
}
my_FLVPlybk.addEventListener(“cuePoint”, listenerObject1);

var listenerObject2:Object = new Object();
listenerObject2.cuePoint = function(eventObject:Object):Void {
online_mc._visible = true;
}
my_FLVPlybk.addEventListener(“cuePoint”, listenerObject2);

var listenerObject3:Object = new Object();
listenerObject3.cuePoint = function(eventObject:Object):Void {
other_mc._visible = true;
}
my_FLVPlybk.addEventListener(“cuePoint”, listenerObject3);[/FONT]