flash video sync
flash video sync
Out of context: Reply #1
- Started
- Last post
- 9 Responses
- unfittoprint0
either start them ath the same time after loading:
movie1.play()
movie2.play()or if it's a stream [altough unusual for synch purposes]:
check = function(){
movie2._currentframe = movie1._currentframe
if(movie1._currentframe == movie1._totalframes-1){
clearInterval(synchLoop);
};
}synch= function(){
clearInterval(synchLoop);
synchLoop=setInterval(this, "check", 30);
}synch();