Loop multiple flv

Good evening. This is really beginning to stress me out! I have just managed to get an embedded flv to loop…WOO HOO! Even though it’s less than perfect as there’s a brief pause before it plays again. Please can someone tell me how I go about modifying the script below so as to loop several embedded flvs as apposed to just one?

import fl.video.*;

// Video component instance name
var flvControl = clip1;
var flvSource = “1.flv”;

// Loop the video when it completes
function completeHandler(event:VideoEvent):void
{
flvControl.seek(0);
flvControl.play()
}
flvControl.addEventListener(VideoEvent.COMPLETE, completeHandler);

// Set video
flvControl.source = flvSource;

I’ve already tried duplicating the script with “clip2” “2.flv” etc…with now success.

Please help me!!! Thanks.