Hey Guys,

This is what I am trying to do (i thought this would be really simple).

I have a 30 second flash video and I have added 2 cue points to it (it is progressive and I have named the 2 cue points but have not given them parameter names or values).

Now the first cuepoint happens at about 20 seconds and puts a button up on the screen over the video, this all works fine and looks good. I do this like this:
Code:
var listenerObject:Object = new Object();
listenerObject.cuePoint = function(eventObject:Object):Void {
	button.play;
}
mov.addEventListener("cuePoint", listenerObject);
mov.autoPlay = false;
now i want the second cuepoint to work and bring up another button that says "replay" and when you click it goes to the start of the video again, but i can't manage to call that cuepoint?

Can I call them by name? something like when replay cuepoint is hit do something?

Any help would be great

Cheers