Skip navigation
ut627s5x
Currently Being Moderated

looping a .flv

Jun 21, 2007 5:39 PM

I made a .flv file for my website but the thing it i would like it to loop non-stop at the moment it runs once then stops..what is the action script for it to loop?
 
Replies
  • Currently Being Moderated
    Jun 22, 2007 8:46 AM   in reply to ut627s5x
    If you're using the FLV playback component, write a listener for the "complete" event:

    var myListener:Object = new Object();
    myListener.complete = function(evt:Object):Void {
    myFLV.play();
    };
    myFLV.addEventListener("complete", myListener);

    Hope that helps!
     
    |
    Mark as:

More Like This

  • Retrieving data ...

Bookmarked By (0)