Reputation: 79
I've been working on this problem for months, can'f find a viable solution. I can get the main movieclips of the files to p with a mouseover action, but I really need three separate swf files to sync upon load. Any suggestions?
Upvotes: 1
Views: 887
Reputation: 15580
To get multiple banners to sync your will have to use LocalConnection. When I have done this in the past I have used this setup:
The main issue I have found with this is that your SWFs will very quickly fall out of sync. How quickly this happens depends on various factors, including the specs of the client machine, the browser and the complexity of your animation. Particular issues exist with inline video on the timeline. I have found the best approach with inline video is to stop it at spread intervals, and use the LocalConnection objects to confirm when each SWF has caught up before allowing all SWFs to continue playing.
If you require greater accuracy, you could maintain a constant communication over LocalConnection which allows the master to monitor the current frame of each slave SWF and trigger jumps on the timeline as slaves fall out of time.
Upvotes: 2