March 26th, 2008 by Luis Alves

Flv loop – looping a flash video movie

Ok, here are the steps to loop your flash video when exported to swf.

1 – Create a new flash file in actionsript 2.0 mode.

2 – Import your video file

3 – When the import finishes, save your file

4 – In the stage, select your video file (make sure that you are selecting the video file and not some other object)

5 – Open the actions window (goto the menu “window” and select “actions”

6 – In the actions panel paste the following code:

on (complete) {
this.autoRewind =true;
this.play();
}

7 – Close the actions window and export your movie. Make sure that actionscript 2.0 is selected when exporting.

That should do it!

Take Care

Technoratti Tags
Looping flash video | Flv Loop | Looping flv

One Response to “Flv loop – looping a flash video movie”

  1. Hey
    Thanx for this script

Leave a Reply