Hey!
Im working on a flash clip, that has to be able to contain atleast 5 Flvs. Well easy as h¤ll i thought :}
The problem:
First i tried to load each flv externally from another swf and the loop code in each of those, unfortunatly this didnt work…Looping each of the flvs. If i have the same flv in all “holders” they loop fine with this code:
on (complete) {
this.seekSeconds(0);
this.play();
}
Also tried using this:
on (complete) {
flvmov1.seekSeconds(0);
flvmov1.play();
flvmov2.seekSeconds(0);
flvmov2.play();
} and so on…
When i then add diffrent flvs to each container none will loop? What am i doing wrong here?
Thanks in advance!