Monthly Archives: January 2008
Loop video in Flash AS2
| January 4, 2008 | Posted by The Futtock under Other Stuff |
If you want to loop a movie on your flash project, select the movie / video and in the action script box put:
/////////////////////////////
on(complete){
this.autoRewind = true;
this.play();
}
/////////////////////////////
This should just keep it running for ever.
Recent Comments