Anyone know how to make video start at certain time?

I’m using this code and basically I want it to start like .5 seconds in.

var nc:NetConnection = new NetConnection();
nc.connect(null);

var ns:NetStream = new NetStream(nc);

theVideo.attachVideo(ns);

ns.play("fruit.flv");

ns.pause();

rewindBtn.onRelease = function() {
	ns.seek(0);
}

playButton.onRelease = function() {
	ns.pause();
}