Hello all...

This code produces a random clip from an array. I need it to loop every 3 seconds. Is this possible?

__________________________________________________ __________

arr = ["strandA","strandT","strandC","strandG"];

arr.sort(function(){return Math.floor(Math.random()*3)-1});

var clip = arr[0];

this.attachMovie(clip,clip,1,init);

__________________________________________________ ___________

Using Flash MX 2004 V7
Thanks!