Found this code working properly with FlvPlayback
. I have stored cuepoints within flv files. it works perfectly.
bkbut.addEventListener(MouseEvent.CLICK,movie1);
function movie1(evt:MouseEvent):void{
rmys01.seekToNavCuePoint("chap01");
}
How should i call the same cuepoint using NetStream
& NetConnection
i have loaded the same flv file using the below code
var ncConnection:NetConnection;
var nsStream:NetStream;
var strSource:String = "rhym01.flv";
nsStream = new NetStream(ncConnection);
nsStream.play(strSource);
vidDisplay.attachNetStream(nsStream);
On click of the button (bkbut), the "rhym01.flv" will start playing cuepoint named "chap01"
Please help. Thanks in advance.