Synchronizing banner execution - Stack Overflow most recent 30 from stackoverflow.com 2010-03-19T04:04:04Z http://stackoverflow.com/feeds/question/1447355 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1447355/synchronizing-banner-execution 0 Synchronizing banner execution Theo.T http://stackoverflow.com/users/64223 2009-09-19T00:43:16Z 2009-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#1448170 1 Answer by fenomas for Synchronizing banner execution fenomas http://stackoverflow.com/users/10651 2009-09-19T08:44:23Z 2009-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>