Loading streaming flvs

I have an flv loading into a player. I need a script that will tell flash to play as soon as the flv starts to play. I have this code for when it stops:

videoFileName=“video/3-12adv_LAURA.flv”//assumes the video is in the same folder as the swf
frameLabelToJumpToWhenDone=“videoDone1” //assumes the the root timeline
bufferTimeInSeconds=2//amount of video it preloads before playback sarts

var netConn:NetConnection = new NetConnection();
netConn.connect(null);
var netStream:NetStream = new NetStream(netConn);
netStream.onStatus = function(infoObject) {
if (infoObject.code==“NetStream.Play.Stop”) {
gotoAndPlay(frameLabelToJumpToWhenDone);
}
};
my_video.attachVideo(netStream);
netStream.setBufferTime(bufferTimeInSeconds);
netStream.play(videoFileName);