Flv controlls

Hi,

I am making a video gallery and Im useing this code!

---- as ----
ns.setBufferTime(10);

ns.onStatus = function(info) {
if (info.code == “NetStream.Buffer.Full”) {
bufferClip._visible = false;
}
if (info.code == “NetStream.Buffer.Emplty”) {
bufferClip._visible = true;
}
if (info.code == “NetStream.Buffer.Stop”) {
ns.seek(0);
}

}
------end as ------
is there possible to buffer 30% of the video then start the video??

and why when the video is finished why the seek doeast go to (0)??

thnx