Home
» Other Stuff » Loop video in Flash AS2
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.
Code that actually works! Thanks!
it can be so simple :S
THX!
Thanks, this really helped me out
Thank you mate, your code is simple and effective!