Synchronizing banner execution - Stack Overflow most recent 30 from stackoverflow.com2010-03-19T04:04:04Zhttp://stackoverflow.com/feeds/question/1447355http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1447355/synchronizing-banner-execution0Synchronizing banner executionTheo.Thttp://stackoverflow.com/users/642232009-09-19T00:43:16Z2009-09-19T08:44:23Z
<p>I'm looking for a best practice to synchronize 3 separate flash banners displayed on the same page. </p>
<p>Basically all of them need to preload (politely), notify they're all prepared after what a command would somehow launch the animation of the 3 of them synchronously making them act like one and single add. </p>
<p>The solution needs to be x-browser. </p>
<p>For now I can only picture a LocalConnection for the intercommunication ?</p>
<p>Any expert advices or hints would be welcome !</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1447355/synchronizing-banner-execution/1448170#14481701Answer by fenomas for Synchronizing banner executionfenomashttp://stackoverflow.com/users/106512009-09-19T08:44:23Z2009-09-19T08:44:23Z<p>LocalConnection is definitely the way I'd go, but you could also have a JavaScript controller that communicates with all three SWFs (via ExternalInterface). I don't think there are any other likely possibilities besides those two methods.</p>
<p>Make sure that you account for the possibility that banner A might (in theory) finish loading before banner C has initialized enough to receive LocalConnection or ExternalInterface calls.</p>