# FLV Player Problem

**URL:** https://forum.kirupa.com/t/flv-player-problem/195337
**Category:** flash
**Created:** [July 31, 2006, 2:02am UTC](https://forum.kirupa.com/t/flv-player-problem/195337 "2006-07-31T02:02:26Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![dumsdei](https://avatars.discourse-cdn.com/v4/letter/d/ecae2f/32.png) [@dumsdei](https://forum.kirupa.com/u/dumsdei)
#### Post date: [July 31, 2006, 2:02am UTC](https://forum.kirupa.com/t/flv-player-problem/195337/1 "2006-07-31T02:02:26Z")

</div>

Hi everyone!

I have a little problem. I know its like a walk in the park for you flash gurus out there but for me, its a nightmare.

I have an FLV player in my movie which plays external FLVs. The external FLVs are loaded at runtime. I have 4 external FLVs, which I want to load one after the other. When the 1st FLV has finished playing, the 2nd one will be loaded into the player, this process is repeated until all 4 FLVs has been played then it goes back to loading the 1st one again.

My question is, how do I make this work?

I have my code right here, it can already load the first FLV and then leave it at that. Can anybody help?

```auto
import mx.video.*;
this.attachMovie("FLVPlayback", "videos", 10, {width:490, height:380, x:0, y:0});

with(videos) {
    autoPlay = true;
    autoRewind = true;
    autoSize = true;
    bufferTime = 0.1;
    contentPath = "WallStreet.flv"
    cuePoints = none;
    isLive = false;
    maintainAspectRatio = false;
    skin = "ClearExternalAll.swf";
    skinAutoHide = true;
    totalTime = 0;
    volume = 100;
}

```

Also, how do I make an FLV loop?
