Hi,

I have this video I made that has an flv with simple play, pause and stop. But I need to add replay.

The thing is that the buttons that I have already don't stop, and play the text animations.

How do I get this to stop and play the text animations as well as the video.

This is my listener for the FLV

Code:
var n = 0

var listenerObject:Object = new Object();
listenerObject.cuePoint = function(eventObject:Object):Void {
        trace("Elapsed time in seconds: " + flv_mc2.my_FLVPlybk2.playheadTime);
		n = n + 20
		gotoAndPlay(n)
}
flv_mc2.my_FLVPlybk2.addEventListener("cuePoint", listenerObject);
and these are my controls:
Code:
this._parent.flv_mc2.my_FLVPlybk2.muteButton = mutebtn;
this._parent.flv_mc2.my_FLVPlybk2.playPauseButton = playpausebtn;




function raja()
{
	klio();
	trace("kliotech");
	}
Can someone teach or tell me how to add REPLAY and to have my text animations stop and play in sync with the FLV?

Thanks,
BMCC81