Kevpool1
09-07-2006, 06:04 PM
I have a movie that plays three videos when the swf is loaded, I want to know if there is a way to continuosly loop these videos one after the other. Here is my code at present:
my_FLVPlybk.volume = 0;
my_FLVPlybk.contentPath = "0.flv";
var listenerObject:Object = new Object ();
listenerObject.stopped = function (eventObject:Object):Void
{
my_FLVPlybk.contentPath = "1.flv";
listenerObject.stopped = function (eventObject:Object):Void
{
my_FLVPlybk.contentPath = "2.flv";
};
};
my_FLVPlybk.volume = 0;
my_FLVPlybk.contentPath = "0.flv";
var listenerObject:Object = new Object ();
listenerObject.stopped = function (eventObject:Object):Void
{
my_FLVPlybk.contentPath = "1.flv";
listenerObject.stopped = function (eventObject:Object):Void
{
my_FLVPlybk.contentPath = "2.flv";
};
};