How can I make a seamless FLV Video loop using flash cs3? Also! How can I put a title in the playback bar?
I'd like to be able to loop back video playback seamlessly on my website. I was able to get the video to loop but there seems to be a slight delay during the loop. Is there any way to fix this?
Here is a link to the example.
LOOP
Right now I am using the FLVplayback component with this actionscript.
import fl.video.VideoEvent;
player.addEventListener(VideoEvent.COMPLETE, playAgain);
function playAgain(evt:VideoEvent):void {
player.seek(0);
player.play();
}
I was also wondering if anyone knew how I could put a title in the menu bar. There will probably be a few videos so I am hoping for a way that is easily changed.
Thanks!
posted by grumblebee at 8:20 PM on January 11, 2008