FLV Player Problem

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?

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?