Okay.. have got it working to an extent... now using the same video object duplicated to play multiple videos (will make it dynamic with a loop... that part will be easy)
Does anyone know how I can get the clips to loop? At the moment they play then stop.
Thanks
PHP Code:
var my_video:Video; // my_video is a Video object on the Stage
var my_nc:NetConnection = new NetConnection();
my_nc.connect(null);
var my_ns:NetStream = new NetStream(my_nc);
v1.my_video.attachVideo(my_ns);
my_ns.play("video44.flv");
var my_ns2:NetStream = new NetStream(my_nc);
v2.my_video.attachVideo(my_ns2);
my_ns2.play("02.flv");
var my_ns3:NetStream = new NetStream(my_nc);
v3.my_video.attachVideo(my_ns3);
my_ns3.play("3.flv");