Come faccio a far ripetere automaticamente un filmato FLV una volta finito, questo è il codice che ho usato nel mio FLA:
grazie!

this.createTextField("status_txt",999,0,0,100,100) ;
status_txt.autoSize = "left";
status_txt.multiline = true;
//
var my_nc:NetConnection = new NetConnection();
//
my_nc.connect(null);
//
var my_ns:NetStream = new NetStream(my_nc);
//my_ns.onStatus = function(infoObject:Object):Void {
// status_txt.text += "status (" + this.time + "seconds)\n";
// status_txt.text += "\t Level: " + infoObject.level + "\n";
// status_txt.text += "\t Code: " + infoObject.code + "\n\n";
//};
//
my_video.attachVideo(my_ns);
//
my_ns.setBufferTime(5);
//
my_ns.play("../video/VIDEO_PUCCINIROOM.flv");