# FLVPlayback

**URL:** https://forum.kirupa.com/t/flvplayback/240055
**Category:** flash
**Created:** [September 28, 2007, 4:45pm UTC](https://forum.kirupa.com/t/flvplayback/240055 "2007-09-28T16:45:46Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![neotox](https://avatars.discourse-cdn.com/v4/letter/n/7feea3/32.png) [@neotox](https://forum.kirupa.com/u/neotox)
#### Post date: [September 28, 2007, 4:45pm UTC](https://forum.kirupa.com/t/flvplayback/240055/1 "2007-09-28T16:45:46Z")

</div>

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!
