How are most AS3 Video Players Created? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-16T19:16:15Z http://stackoverflow.com/feeds/question/208380 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/208380/how-are-most-as3-video-players-created 0 How are most AS3 Video Players Created? jrutter http://stackoverflow.com/users/28454 2008-10-16T12:37:59Z 2010-01-06T06:32:42Z <p>Are most flash video players created all programmatically? Or they done using static buttons that are referenced in classes? Is it better to create all your buttons on the fly or does it not really matter?</p> http://stackoverflow.com/questions/208380/how-are-most-as3-video-players-created/208402#208402 1 Answer by Gerald for How are most AS3 Video Players Created? Gerald http://stackoverflow.com/users/19404 2008-10-16T12:48:36Z 2008-10-16T12:48:36Z <p>Most video players aren't using AS3 yet, but different ones do it differently. It depends on what level of configurability you want. Personally I mostly do it programmatically so that I can configure everything with an XML config file or FlashVars.</p> http://stackoverflow.com/questions/208380/how-are-most-as3-video-players-created/305728#305728 -1 Answer by jrutter for How are most AS3 Video Players Created? jrutter http://stackoverflow.com/users/28454 2008-11-20T15:45:25Z 2008-11-20T15:45:25Z <p>Do you know of a good tutorial on FlashVars?</p> http://stackoverflow.com/questions/208380/how-are-most-as3-video-players-created/1061144#1061144 1 Answer by bgriggs1 for How are most AS3 Video Players Created? bgriggs1 http://stackoverflow.com/users/0 2009-06-29T23:53:32Z 2009-06-29T23:53:32Z <p>I've found the easiest way was to use AS3 video components and customize them as needed. For example, the play head does all the scrubbing for you automatically, but you can control placement and design.</p> <p>Here's a great tutorial: <a href="http://www.adobe.com/devnet/flash/articles/skinning_as3_flvcomp_03.html" rel="nofollow">http://www.adobe.com/devnet/flash/articles/skinning_as3_flvcomp_03.html</a></p> http://stackoverflow.com/questions/208380/how-are-most-as3-video-players-created/1808114#1808114 0 Answer by daidai for How are most AS3 Video Players Created? daidai http://stackoverflow.com/users/196555 2009-11-27T11:04:00Z 2009-11-27T11:04:00Z <p>I don't think there is much difference internally if you use static buttons or programmed ones. Its more a personal preference. If my buttons have been complexly designed then I would import them, then reference them in classes; but if they are simple boxes and text, for example, then I would program them as it gives better control. I personally prefer all things being in classes not on the stage, but sometimes its easier not to. </p> <p>here is a good video tutorial <a href="http://www.thetechlabs.com/tutorials/audionvideo/how-to-build-a-as3-videoplayer/" rel="nofollow">http://www.thetechlabs.com/tutorials/audionvideo/how-to-build-a-as3-videoplayer/</a> </p> http://stackoverflow.com/questions/208380/how-are-most-as3-video-players-created/1808142#1808142 0 Answer by daidai for How are most AS3 Video Players Created? daidai http://stackoverflow.com/users/196555 2009-11-27T11:11:15Z 2009-11-27T11:11:15Z <p>check out the swfobject documentation for good flashvar implementation <a href="http://code.google.com/p/swfobject/wiki/documentation" rel="nofollow">http://code.google.com/p/swfobject/wiki/documentation</a></p>